home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Resources / Browsers, Managers & Extensions / Gmail Notifier 0.6.3.9 / gmail_notifier-0.6.3.9-fx.xpi / components / nsGMNotifierService.js < prev    next >
Text File  |  2008-10-14  |  88KB  |  2,552 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is Gmail Notifier code.
  15.  *
  16.  * The Initial Developer of the Original Code is
  17.  * Doron Rosenberg.
  18.  * Portions created by the Initial Developer are Copyright (C) 2004 - 2006
  19.  * the Initial Developer. All Rights Reserved.
  20.  *
  21.  * Contributor(s):
  22.  *
  23.  * Alternatively, the contents of this file may be used under the terms of
  24.  * either of the GNU General Public License Version 2 or later (the "GPL"),
  25.  * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  26.  * in which case the provisions of the GPL or the LGPL are applicable instead
  27.  * of those above. If you wish to allow use of your version of this file only
  28.  * under the terms of either the GPL or the LGPL, and not to allow others to
  29.  * use your version of this file under the terms of the MPL, indicate your
  30.  * decision by deleting the provisions above and replace them with the notice
  31.  * and other provisions required by the GPL or the LGPL. If you do not delete
  32.  * the provisions above, a recipient may use your version of this file under
  33.  * the terms of any one of the MPL, the GPL or the LGPL.
  34.  *
  35.  * ***** END LICENSE BLOCK ***** */
  36.  
  37. const kGMSERVICE_CONTRACTID = "@mozilla.org/GMailNotifier;1"
  38. const kGMSERVICE_CID = Components.ID("1d024ea4-5432-4831-9241-c99a85a9d2b4");
  39. const nsINotifierService = Components.interfaces.nsIGMNotifierService
  40. const nsINotifierProgressListener = Components.interfaces.nsIGMNotifierProgressListener;
  41. const nsISupports = Components.interfaces.nsISupports;
  42.  
  43. const kIOSERVICE_CONTRACTID = "@mozilla.org/network/io-service;1";
  44. const nsIIOService = Components.interfaces.nsIIOService;
  45.  
  46. const nsICookieManager = Components.interfaces.nsICookieManager;
  47. const kCOOKIESERVICE_CONTRACTID = "@mozilla.org/cookieService;1";
  48.  
  49. const kPSWDMANAGER_CONTRACTID = "@mozilla.org/passwordmanager;1";
  50. const nsIPasswordManagerInternal = Components.interfaces.nsIPasswordManagerInternal;
  51.  
  52. const kLOGINMANAGER_CONTRACTID = "@mozilla.org/login-manager;1"
  53. const nsILoginManager = Components.interfaces.nsILoginManager;
  54.  
  55. const kTIMER_CONTRACTID = "@mozilla.org/timer;1";
  56. const nsITimer = Components.interfaces.nsITimer;
  57.  
  58. const nsIHttpChannel = Components.interfaces.nsIHttpChannel;
  59.  
  60. function nsNotifierService() {
  61.   // log string
  62.   this.logString = "";
  63.   this.connectionCounter = 0;
  64.  
  65.   // array of attached listeners
  66.   this.listeners = new Array();
  67.   this.notificationListenerID = null;
  68.  
  69.   this.userQueue = null;
  70.   this.currentUserQueue = null;
  71.  
  72.   this.loggedIn = false;
  73.   this.userList = null;
  74.   this.userCount = 0;
  75.   this.loggedInUsers = 0;
  76.   this.multiuser = false;
  77.   this.defaultUser = null;
  78.  
  79.   this.connectionPhase = null;
  80.   this.isAutoConnecting = false;
  81.  
  82.   this.prefBranch = null;
  83.  
  84.   this.updateTimer = null;
  85.   this.timeOut = 600000; // default to 10 mins
  86.  
  87.   var myThis = this;
  88.   this.PrefChangeObserver = {
  89.     observe: function(aSubject, aTopic, aData)
  90.     {
  91.       myThis.prefChanged(aData);
  92.     }
  93.   };
  94.  
  95.   this.channel = null;
  96.  
  97.   this.addPrefObserver("gm-notifier", this.PrefChangeObserver);
  98.   this.observerService = Components.classes["@mozilla.org/observer-service;1"].getService(Components.interfaces.nsIObserverService);
  99.  
  100.   if (!this.supportsMultiMode()) {
  101.     this.multiuser = false;
  102.   } else {
  103.     this.multiuser = this.getPrefBranch().getBoolPref("gm-notifier.multiaccount.enabled");
  104.   }
  105.  
  106.   // force logged out
  107.   this.getPrefBranch().setBoolPref("gm-notifier.loggedin", false);
  108.  
  109.   // can be not set
  110.   try {
  111.     this.defaultUser = this.getPrefBranch().getCharPref("gm-notifier.users.default");
  112.   } catch (e) {}
  113. }
  114.  
  115. // migrates old-firefox (2.0 and below) stored passwords to the new 3.0 way, 
  116. // which requres a http realm
  117. nsNotifierService.prototype.migrateAccounts = function() {
  118.   var url = "chrome://gm-notifier/";
  119.  
  120.   var passwordManager = Components.classes[kLOGINMANAGER_CONTRACTID].getService(nsILoginManager);
  121.   var logins = passwordManager.getAllLogins({});
  122.   for (var i = 0; i < logins.length; i++) {
  123.     this.logItem(" :: "+logins[i].hostname + " " + logins[i].httpRealm + " " + logins[i].username);
  124.  
  125.     if (logins[i].hostname == url && (logins[i].httpRealm == null)) {
  126.       this.logItem(" ---- migrating login");
  127.  
  128.       var logininfo = Components.classes["@mozilla.org/login-manager/loginInfo;1"].createInstance(Components.interfaces.nsILoginInfo);
  129.       // XXX: FF3 doesn't allow empty/null names - using " ", need to reconsider
  130.       logininfo.init(url, null, "gm-notifier", logins[i].username, logins[i].password ? logins[i].password : " ", "", "");
  131.       passwordManager.modifyLogin(logins[i], logininfo);
  132.     }
  133.   }
  134. }
  135.  
  136. nsNotifierService.prototype.buildUserList = function() {
  137.   this.userList = new Object();
  138.  
  139.   // we need to reset notifier prefs for loggedin to false.  This will also
  140.   // transition 0.5.x users to the new pref way
  141.   var url = "chrome://gm-notifier/";
  142.  
  143.   // check for toolkit's login manager (Mozilla 1.9)
  144.   if (Components.classes[kLOGINMANAGER_CONTRACTID]) {
  145.     var passwordManager = Components.classes[kLOGINMANAGER_CONTRACTID].getService(nsILoginManager);
  146.  
  147.     var passwords = passwordManager.findLogins({}, url, null, "gm-notifier");
  148.     if (passwords.length == 0) {
  149.       // try to migrate
  150.       this.logItem("no passwords found, lets try to migrate accounts");
  151.       this.migrateAccounts();
  152.     }
  153.  
  154.     passwords = passwordManager.findLogins({}, url, null, "gm-notifier");
  155.  
  156.     if (passwords.length > 0) {
  157.       for (var i = 0; i < passwords.length; i++) {
  158.         username = passwords[i].username;
  159.  
  160.         this.userList[username] = this.newUserListItem(username, null);
  161.         this.getPrefBranch().setBoolPref("gm-notifier.userlist." + username + ".loggedin", false);
  162.       }
  163.     }
  164.   } else {
  165.     var passwordManager = Components.classes[kPSWDMANAGER_CONTRACTID].createInstance();
  166.     if (!passwordManager) {
  167.       return;
  168.     }
  169.     passwordManager = passwordManager.QueryInterface(Components.interfaces.nsIPasswordManager);
  170.  
  171.     if (!passwordManager) {
  172.       return;
  173.     }
  174.  
  175.     var enumerator = passwordManager.enumerator;
  176.     while (enumerator.hasMoreElements()) {
  177.       var nextPassword;
  178.       try {
  179.         nextPassword = enumerator.getNext();
  180.       } catch(e) {
  181.         break;
  182.       }
  183.       nextPassword = nextPassword.QueryInterface(Components.interfaces.nsIPassword);
  184.       var host = nextPassword.host;
  185.  
  186.       if (host == url) {
  187.         // try/catch in case decryption fails (invalid signon entry)
  188.         try {
  189.           var username = nextPassword.user;
  190.           this.userList[username] = this.newUserListItem(username, null);
  191.  
  192.           this.getPrefBranch().setBoolPref("gm-notifier.userlist." + username + ".loggedin", false);
  193.         } catch (e) {
  194.         }
  195.       }
  196.     }
  197.   }
  198. }
  199.  
  200. nsNotifierService.prototype.buildUserQueue = function() {
  201.   this.userQueue = new Array();
  202.  
  203.   // add default user first, if one exists.
  204.   if (this.defaultUser) {
  205.     this.userQueue.push(this.defaultUser);
  206.   }
  207.  
  208.   // not multi-user, we are done
  209.   if (!this.multiuser) {
  210.     return;
  211.   }
  212.  
  213.   for (name in this.userList) {
  214.     if (name != this.defaultUser) {
  215.       // only add to the queue if autologin is set to true
  216.       var autologin = false;
  217.  
  218.       try {
  219.         autologin = this.getPrefBranch().getBoolPref("gm-notifier.userlist." + name + ".autologin");
  220.       } catch (e) {}
  221.  
  222.       if (autologin) {
  223.         this.userQueue.push(name);
  224.       }
  225.     }
  226.   }
  227. }
  228.  
  229.  
  230. /********** Scriptable interfaces ****************/
  231.  
  232. /**
  233.  * Initiates login
  234.  *
  235.  * @param aUsername
  236.  * @param aPassword
  237.  * @param aListenerID
  238.  */
  239. nsNotifierService.prototype.initLogin = function(aUsername, aPassword, aListenerID) {
  240.   this.logItem("initLogin: aListenerID is " + aListenerID);
  241.  
  242.   // build user list
  243.   if (!this.userList) {
  244.     this.logItem("initLogin: no user list");
  245.     try {
  246.       this.buildUserList();
  247.     } catch (ex) {
  248.       // master password canceling throws an exception
  249.       this.userList = null;
  250.     }
  251.   }
  252.  
  253.   if (!this.userList[aUsername])
  254.     this.userList[aUsername] = this.newUserListItem(aUsername, aPassword);
  255.   else {
  256.     this.userList[aUsername].password = aPassword;
  257.   }
  258.  
  259.   this.notificationListenerID = aListenerID;
  260.  
  261.   // user queue
  262.   if (!this.multiuser) {
  263.     // single user - one person at a time in the queue
  264.     this.userQueue = new Array();
  265.     this.userQueue.push(aUsername);
  266.   }
  267.  
  268.   this.checkAccounts();
  269. }
  270.  
  271. /**
  272.  * Initiates a new mail check
  273.  *
  274.  */
  275. nsNotifierService.prototype.checkNow = function() {
  276.   this.checkAccounts();
  277. }
  278.  
  279. /**
  280.  * Logs out all users
  281.  *
  282.  */
  283. nsNotifierService.prototype.logout = function() {
  284.   // clear the timer
  285.   if (this.updateTimer) {
  286.     this.updateTimer.cancel();
  287.   }
  288.  
  289.   this.updateTimer = null;
  290.  
  291.   // clear the cookie data
  292.   this.clearCookieData();
  293.  
  294.   // reset all users and log each user out
  295.   for (var username in this.userList) {
  296.     this.userList[username] = this.newUserListItem(username, null);
  297.     this.pushStateChange(username, nsINotifierProgressListener.LOGOUT_USER);
  298.   }
  299.  
  300.   // clear user queue
  301.   this.userQueue = null;
  302.   this.currentUserQueue = null;
  303.   this.loggedIn = false;
  304.   this.loggedInUsers = 0;
  305.  
  306.   this.pushStateChange(null, nsINotifierProgressListener.LOGOUT);
  307.  
  308.   this.getPrefBranch().setBoolPref("gm-notifier.loggedin", false);
  309. }
  310.  
  311. /**
  312.  * Logs the user out
  313.  *
  314.  */
  315. nsNotifierService.prototype.logoutUser = function(aUsername) {
  316.   if (!this.userList[aUsername]) {
  317.     return;
  318.   }
  319.  
  320.   // remove from the user queue
  321.   if (this.userQueue) {
  322.     var index =  this.isUserInQueue(aUsername);;
  323.     if (index !== false) {
  324.       this.userQueue.splice(index, 1);
  325.     }
  326.   }
  327.   if (this.userList[aUsername].state == nsINotifierService.USER_STATE_LOGGED_IN) {
  328.     this.userList[aUsername].state = nsINotifierService.USER_STATE_LOGGED_OUT;
  329.     this.loggedInUsers--;
  330.   }
  331.  
  332.   // logout, so reset the userdata.
  333.   this.userList[aUsername] = this.newUserListItem(aUsername, null);
  334.  
  335.   // if this was the default user and we have other logged in users, switch
  336.   // default user to first in the queue
  337.   if (this.loggedInUsers > 0) {
  338.     if (this.defaultUser == aUsername) {
  339.       this.getPrefBranch().setCharPref("gm-notifier.users.default", this.userQueue[0]);
  340.     }
  341.   }
  342.  
  343.   // tell all listeners that we logged out
  344.   this.pushStateChange(aUsername, nsINotifierProgressListener.LOGOUT_USER);
  345.  
  346.   if (this.loggedInUsers == 0) {
  347.     this.logout();
  348.   }
  349. }
  350.  
  351. /**
  352.  * Logs the user in
  353.  *
  354.  */
  355. nsNotifierService.prototype.loginUser = function(aUsername) {
  356.   // in not in the user list, new user - such as one being added in the accounts
  357.   // dialog
  358.   if (!this.userList[aUsername]) {
  359.     var password = this.getPassword(aUsername);
  360.  
  361.     // no password, no go
  362.     if (!password) {
  363.       return;
  364.     }
  365.  
  366.     this.userList[aUsername] = this.newUserListItem(aUsername, password);
  367.   }
  368.  
  369.   // add to queue
  370.   if (!this.userQueue) {
  371.     this.userQueue = new Array();
  372.   }
  373.  
  374.   // if not in the queue, add
  375.   var userQueueIndex = this.isUserInQueue(aUsername);
  376.   if (userQueueIndex === false) {
  377.     this.userQueue.push(aUsername);
  378.     wasInQueue = false;
  379.     userQueueIndex = this.userQueue.length - 1;
  380.   }
  381.  
  382.   // if already in an accounts check, add to queue
  383.   if (this.currentUserQueue != null) {
  384.     // do nothing really
  385.   } else {
  386.     // clear timer
  387.     if (this.updateTimer) {
  388.       this.updateTimer.cancel();
  389.     }
  390.  
  391.     // cheat :)
  392.     this.currentUserQueue = userQueueIndex;
  393.  
  394.     // force this person to be the default user if no logged in users
  395.     if (this.loggedInUsers == 0) {
  396.       this.getPrefBranch().setCharPref("gm-notifier.users.default", aUsername);
  397.     }
  398.  
  399.     // presto!
  400.     this.accountCheckStart(aUsername);
  401.   }
  402. }
  403.  
  404. nsNotifierService.prototype.isUserInQueue = function(aUsername) {
  405.   if (!this.userQueue) {
  406.     return false;
  407.   }
  408.  
  409.   for (var i = 0; i < this.userQueue.length; i++) {
  410.     if (this.userQueue[i] == aUsername) {
  411.       return i;
  412.     }
  413.   }
  414.  
  415.   return false;
  416.  
  417. }
  418.  
  419. /**
  420.  * Loads the user's cookies into the browser
  421.  *
  422.  */
  423. nsNotifierService.prototype.loadUserCookies = function(aUsername) {
  424.   if (!this.userList[aUsername] ||
  425.       this.userList[aUsername].state != nsINotifierService.USER_STATE_LOGGED_IN) {
  426.     return;
  427.   }
  428.  
  429.   this.loadCookieData(aUsername);
  430. }
  431.  
  432. nsNotifierService.prototype.loadCookieIntoApp = function(aCookieData) {
  433.   if (!aCookieData) {
  434.     return;
  435.   }
  436.  
  437.   var cookieManager2 = Components.classes["@mozilla.org/cookiemanager;1"]
  438.                                  .getService(Components.interfaces.nsICookieManager2);
  439.  
  440.   var index = aCookieData.value.indexOf("=");
  441.   var value = aCookieData.value.substr(index+1);
  442.   //this.logItem("  -- cdata data is: name: "+aCookieData.name+" value:" + value + " for "+aCookieData.domain);
  443.  
  444.   // 1.9+ added a httpOnly flag
  445.   var isGecko19 = false;
  446.  
  447.   if (Components.interfaces.nsIXULAppInfo) {
  448.     var appInfo = Components.classes["@mozilla.org/xre/app-info;1"].getService(Components.interfaces.nsIXULAppInfo);
  449.     var versionChecker = Components.classes["@mozilla.org/xpcom/version-comparator;1"].getService(Components.interfaces.nsIVersionComparator);
  450.  
  451.     if (versionChecker.compare(appInfo.platformVersion, "1.9") >= 0) {
  452.       isGecko19 = true;
  453.     }
  454.   }
  455.  
  456.   if (isGecko19) {
  457.     cookieManager2.add(aCookieData.domain, aCookieData.path ? aCookieData.path : "", aCookieData.name, value, false, false, true, Math.pow(2, 62));
  458.   } else {
  459.     cookieManager2.add(aCookieData.domain, aCookieData.path ? aCookieData.path : "", aCookieData.name, value, false, true, Math.pow(2, 62));
  460.   }
  461. }
  462.  
  463. /**
  464.  * Adds an NotifierListener to this service
  465.  *
  466.  * @param aListener
  467.  */
  468. nsNotifierService.prototype.addListener = function(aListener) {
  469.   // should we autologin?
  470.   // make sure to only check for autologin the first time a listener has been
  471.   // added, ie first browser window calls us.
  472.   if ((this.listeners.length == 0) && this.getPrefBranch() &&
  473.       this.getPrefBranch().getBoolPref("gm-notifier.autologin.enabled")) {
  474.     // autologin
  475.     if (!this.userList) {
  476.       try {
  477.         this.buildUserList();
  478.       } catch (ex) {
  479.         // master password canceling throws an exception
  480.         this.userList = null;
  481.         this.listeners.push(aListener);
  482.         return;
  483.       }
  484.     }
  485.  
  486.     if (this.userCount > 0) {
  487.       if (!this.defaultUser) {
  488.         // get first user in list
  489.         for (var name in this.userList) {
  490.           this.defaultUser = name;
  491.           break;
  492.         }
  493.       }
  494.  
  495.       this.isAutoConnecting = true;
  496.  
  497.       // user queue
  498.       if (!this.multiuser) {
  499.         // single user - one person at a time in the queue
  500.         this.userQueue = new Array();
  501.         this.userQueue.push(this.defaultUser);
  502.       }
  503.  
  504.       this.checkAccounts();
  505.     }
  506.   }
  507.  
  508.   this.listeners.push(aListener);
  509.  
  510.   // for every new listener added, push login state
  511.   if (this.loggedIn) {
  512.     aListener.onStateChange(null, nsINotifierProgressListener.NOTIFIER_LOGGED_IN);
  513.   } else {
  514.     aListener.onStateChange(null, nsINotifierProgressListener.LOGOUT);
  515.   }
  516.  
  517.   return this.listeners.length;
  518. }
  519.  
  520. /**
  521.  * Removes an NotifierListener to this service
  522.  *
  523.  * @param aListener
  524.  */
  525. nsNotifierService.prototype.removeListener = function(aListener) {
  526.   var found = false;
  527.   var run = 0;
  528.  
  529.   while (!found && (run < this.listeners.length)) {
  530.     if (this.listeners[run] == aListener) {
  531.       this.listeners[run] = null;
  532.       found = true;
  533.     }
  534.     run++;
  535.   }
  536. }
  537.  
  538. /**
  539.  * Gets the reset state.  Reset is set if the user clicks/checks for new mail.
  540.  */
  541. nsNotifierService.prototype.getResetState = function(aUsername) {
  542.   return this.userList[aUsername].resetState;
  543. }
  544.  
  545. /**
  546.  * Sets the reset state
  547.  *
  548.  * @param aResetState
  549.  */
  550. nsNotifierService.prototype.setResetState = function(aUsername, aResetState) {
  551.   this.userList[aUsername].resetState = aResetState;
  552.  
  553.   // need to send an event so that the unread count will update.  NEW_MAIL will
  554.   // do for now, XXX: probably should have its own state.
  555.   this.pushStateChange(aUsername, nsINotifierProgressListener.NEW_MAIL);
  556. }
  557.  
  558. nsNotifierService.prototype.getNewMailMode = function(aUsername) {
  559.   return this.userList[aUsername].newMailMode;
  560. }
  561.  
  562. nsNotifierService.prototype.setNewMailMode = function(aUsername, aMode) {
  563.   this.userList[aUsername].newMailMode = aMode;
  564.  
  565.   this.pushStateChange(aUsername, nsINotifierProgressListener.USER_MODE_CHANGED);
  566. }
  567.  
  568. nsNotifierService.prototype.getInboxUnread = function(aUsername) {
  569.   return this.userList[aUsername].inboxUnread;
  570. }
  571.  
  572. nsNotifierService.prototype.getUnreadCount = function() {
  573.   return this.userList[aUsername].unreadEmails;
  574. }
  575.  
  576. nsNotifierService.prototype.getDisplayCount = function(aUsername) {
  577.   if (this.userList[aUsername].resetState) {
  578.     return 0;
  579.   } else {
  580.     if (this.getPrefBranch().getBoolPref("gm-notifier.ui.counter.showInbox")) {
  581.       return this.getInboxUnread(aUsername);
  582.     } else {
  583.       return this.userList[aUsername].unreadEmails;
  584.     }
  585.   }
  586. }
  587.  
  588. nsNotifierService.prototype.getNewCount = function(aUsername) {
  589.   var value;
  590.  
  591.   if (this.userList[aUsername].resetState) {
  592.     value = 0;
  593.   } else {
  594.     if (this.getPrefBranch().getBoolPref("gm-notifier.ui.counter.showInbox")) {
  595.       value = this.userList[aUsername].inboxNew;
  596.     } else {
  597.       value = this.userList[aUsername].newEmails;
  598.     }
  599.   }
  600.  
  601.   return value;
  602. }
  603.  
  604. nsNotifierService.prototype.getUsedMB = function(aUsername) {
  605.   return this.userList[aUsername].space_used_mb;
  606. }
  607.  
  608. nsNotifierService.prototype.getSpaceUsed = function(aUsername) {
  609.   return this.userList[aUsername].space_used_percent;
  610. }
  611.  
  612. nsNotifierService.prototype.getTotalSpace = function(aUsername) {
  613.   return this.userList[aUsername].total_mb;
  614. }
  615.  
  616. nsNotifierService.prototype.getFolderCount = function(aUsername) {
  617.   return this.userList[aUsername].folders.length;
  618. }
  619.  
  620. nsNotifierService.prototype.getFolderItem = function(aUsername, aPosition, sizeObj) {
  621.   sizeObj.value = 2;
  622.   return [this.userList[aUsername].folders[aPosition].name, this.userList[aUsername].folders[aPosition].unreadMail];
  623. }
  624.  
  625. nsNotifierService.prototype.getActiveUserCount = function() {
  626.   return this.loggedInUsers;
  627. }
  628.  
  629. nsNotifierService.prototype.getUserCount = function() {
  630.   // build the userlist
  631.   if (!this.userList) {
  632.     this.buildUserList();
  633.   }
  634.  
  635.   return this.userCount;
  636. }
  637.  
  638. nsNotifierService.prototype.getUserName = function(aUserNum) {
  639.   // make sure aUserNum is valid
  640.   if (aUserNum > this.userCount || aUserNum < 0) {
  641.     return;
  642.   }
  643.  
  644.   var i = 0;
  645.   var username = "";
  646.  
  647.   for (userName in this.userList) {
  648.     if (i == aUserNum) {
  649.       break;
  650.     }
  651.  
  652.     i++;
  653.   }
  654.  
  655.   return userName;
  656. }
  657.  
  658. nsNotifierService.prototype.getUserState = function(aUsername) {
  659.   var state = nsINotifierService.USER_STATE_LOGGED_OUT;
  660.  
  661.   if (this.userList[aUsername]) {
  662.     state = this.userList[aUsername].state;
  663.   }
  664.  
  665.   return state;
  666. }
  667.  
  668. nsNotifierService.prototype.removeUser = function(aUsername) {
  669.   if (!aUsername || !this.userList[aUsername]) {
  670.     return;
  671.   }
  672.  
  673.   // make copy, but without the user to remove
  674.   var newList = new Array();
  675.  
  676.   function copyObjectData(aObject) {
  677.     var obj = new Object();
  678.  
  679.     for (item in aObject) {
  680.       if (typeof(item) == "object") {
  681.         obj[item] = copyObjectData(aObject[item]);
  682.       } else {
  683.         obj[item] = aObject[item];
  684.       }
  685.     }
  686.  
  687.     return obj;
  688.   }
  689.  
  690.   for (username in this.userList) {
  691.     if (username != aUsername) {
  692.       newList[username] = copyObjectData(this.userList[username]);
  693.     } else {
  694.       this.userCount--;
  695.     }
  696.   }
  697.  
  698.   this.userList = newList;
  699. }
  700.  
  701. nsNotifierService.prototype.addUser = function(aUsername) {
  702.   if (this.userList[aUsername]) {
  703.     return;
  704.   }
  705.  
  706.   this.userList[aUsername] = this.newUserListItem(aUsername, null);
  707. }
  708.  
  709. nsNotifierService.prototype.getQueueCount = function() {
  710.   if (!this.userQueue) {
  711.     this.buildUserQueue();
  712.   }
  713.  
  714.   return this.userQueue.length;
  715. }
  716.  
  717. nsNotifierService.prototype.getQueueUserName = function(aUserNum) {
  718.   // make sure aUserNum is valid
  719.   if (aUserNum > this.userCount || aUserNum < 0) {
  720.     return null;
  721.   }
  722.  
  723.   return this.userQueue[aUserNum];
  724. }
  725.  
  726. nsNotifierService.prototype.setTimeout = function(aMinutes) {
  727.   // convert to ms
  728.   this.timeOut = (aMinutes * 60000);
  729.  
  730.   // set timer only if we are logged in
  731.   if (this.loggedIn) {
  732.     this.setTimer();
  733.   }
  734. }
  735.  
  736. /**
  737.  * Adds an item to the log
  738.  *
  739.  */
  740. nsNotifierService.prototype.logItem = function(aLogString) {
  741.   this.logString += aLogString + "|||";
  742. }
  743.  
  744. nsNotifierService.prototype.getLog = function() {
  745.   return this.logString;
  746. }
  747.  
  748. nsNotifierService.prototype.clearLog = function() {
  749.   this.logString = "";
  750. }
  751.  
  752. /*************** Private Methods ************/
  753.  
  754. nsNotifierService.prototype.talkToServer = function(aUsername, aURL, aPostData,
  755.                                                     aCookieData, aReferrer,
  756.                                                     aCallbackFunc) {
  757.   this.logItem("  talkToServer Called ("+aUsername+") with url: "+aURL);
  758.   //dump("\n\nurl: " + aURL);
  759.  
  760.   // the IO service
  761.   var ioService = Components.classes[kIOSERVICE_CONTRACTID].getService(nsIIOService);
  762.  
  763.   // create an nsIURI
  764.   var uri = ioService.newURI(aURL, null, null);
  765.  
  766.   //nsIInputStream
  767.   var uploadStream = Components.classes["@mozilla.org/io/string-input-stream;1"]
  768.     .createInstance(Components.interfaces.nsIStringInputStream);
  769.  
  770.   if (aPostData) {
  771.     uploadStream.setData(aPostData, aPostData.length);
  772.   }
  773.  
  774.   // clean up if old channel exists.  Should never happen really!
  775.   if (this.channel) {
  776.     this.channel.cancel(Components.results.NS_BINDING_ABORTED);
  777.     this.channel = null;
  778.   }
  779.  
  780.   // get a channel for that nsIURI
  781.   this.channel = ioService.newChannelFromURI(uri);
  782.  
  783.   // get a httpchannel and make it a post
  784.   var httpChannel = this.channel.QueryInterface(nsIHttpChannel);
  785.  
  786.   // set a referrer
  787.   if (aReferrer) {
  788.     var referrerUri = ioService.newURI(aReferrer, null, null);
  789.     httpChannel.referrer = referrerUri;
  790.   }
  791.  
  792.   if (aPostData) {
  793.     var uploadChannel = this.channel.QueryInterface(Components.interfaces.nsIUploadChannel);
  794.     uploadChannel.setUploadStream(uploadStream, "application/x-www-form-urlencoded", -1);
  795.  
  796.     // order important - setUploadStream resets to get/put
  797.     httpChannel.requestMethod = "POST";
  798.   }
  799.  
  800.   if (aCookieData){
  801.     // httpChannel.setRequestHeader("Cookie", aCookieData, false);
  802.     for (var run = 0; run < aCookieData.length; run++) {
  803.       httpChannel.setRequestHeader("Cookie", aCookieData[run], true);
  804.     }
  805.   }
  806.  
  807.   var observer = new this.observer(aCallbackFunc, aUsername, this);
  808.  
  809.   this.channel.notificationCallbacks = observer;
  810.   this.channel.asyncOpen(observer, null);
  811. }
  812.  
  813. nsNotifierService.prototype.checkAccounts = function() {
  814.   // checks accounts in the userqueue
  815.   if (!this.userQueue) {
  816.     this.buildUserQueue();
  817.   }
  818.  
  819.   this.currentUserQueue = 0;
  820.  
  821.   this.pushStateChange(null, nsINotifierProgressListener.ACCOUNTS_CHECK_INITIATED);
  822.  
  823.   this.accountCheckStart(this.userQueue[0]);
  824. }
  825.  
  826. nsNotifierService.prototype.accountCheckResult = function(aUsername, aStatus) {
  827.   if (aStatus == nsINotifierProgressListener.LOGIN_DETAILS_INVALID) {
  828.     this.logItem("  Login details were invalid");
  829.     this.userList[aUsername].state = nsINotifierService.USER_STATE_INVALID_DETAILS;
  830.  
  831.     if (this.userList[aUsername].state != nsINotifierService.USER_STATE_INVALID_DETAILS) {
  832.       if (this.userList[aUsername].state == nsINotifierService.USER_STATE_LOGGED_IN) {
  833.         // if was logged in, remove from logged in user count
  834.         this.loggedInUsers--;
  835.         this.clearCookieObject(aUsername);
  836.         this.getPrefBranch().setBoolPref("gm-notifier.userlist." + aUsername + ".loggedin", false);
  837.       }
  838.     }
  839.  
  840.   } else if (aStatus == nsINotifierProgressListener.LOGIN_FAILED) {
  841.     this.logItem("  Login connection failed");
  842.     this.userList[aUsername].state = nsINotifierService.USER_STATE_LOGGED_OUT;
  843.  
  844.     // if user was logged in, log him out.
  845.     if (this.userList[aUsername].state == nsINotifierService.USER_STATE_LOGGED_IN) {
  846.       this.loggedInUsers--;
  847.       this.clearCookieObject(aUsername);
  848.       this.getPrefBranch().setBoolPref("gm-notifier.userlist." + aUsername + ".loggedin", false);
  849.     }
  850.   } else if (aStatus == nsINotifierProgressListener.LOGIN_SUCCESS) {
  851.     // if user was logged out, log him in.
  852.     if (this.userList[aUsername].state == nsINotifierService.USER_STATE_LOGGED_OUT) {
  853.       this.loggedInUsers++;
  854.       this.getPrefBranch().setBoolPref("gm-notifier.userlist." + aUsername + ".loggedin", true);
  855.     }
  856.  
  857.     this.userList[aUsername].state = nsINotifierService.USER_STATE_LOGGED_IN;
  858.   }
  859.  
  860.   // if failed to login, check for default user
  861.   if (this.multiuser && aStatus != nsINotifierProgressListener.LOGIN_SUCCESS) {
  862.     if (this.defaultUser == aUsername) {
  863.       // if the default user didn't log in, we switch the default user out.
  864.       if (this.loggedInUsers > 0) {
  865.         // we have a user logged in already
  866.         for (name in this.userQueue) {
  867.           if (this.userList[aUsername].state == nsINotifierService.USER_STATE_LOGGED_IN) {
  868.             this.getPrefBranch().setCharPref("gm-notifier.users.default", name);
  869.             break;
  870.           }
  871.         }
  872.       } else {
  873.         // use the next person, if one exists
  874.         var name = this.userQueue[this.currentUserQueue+1];
  875.         if (name) {
  876.           this.getPrefBranch().setCharPref("gm-notifier.users.default", name);
  877.         }
  878.       }
  879.     }
  880.   } else if (!this.defaultUser && aStatus == nsINotifierProgressListener.LOGIN_SUCCESS) {
  881.     // no default user, make this person it!
  882.     this.getPrefBranch().setCharPref("gm-notifier.users.default", aUsername);
  883.   }
  884.  
  885.   this.pushStateChange(aUsername, aStatus);
  886. }
  887.  
  888. nsNotifierService.prototype.accountCheckStart = function(aUsername) {
  889.   // only log 2 sessions.  Helps reduce memory usage.
  890.   if (this.connectionCounter >= 2) {
  891.     this.logString = "";
  892.     this.connectionCounter = 0;
  893.   }
  894.  
  895.   // http observer - init
  896.   if (this.supportsMultiMode()) {
  897.     this.observerService.addObserver(this, "http-on-modify-request", false);
  898.     this.observerService.addObserver(this, "http-on-examine-response", false);
  899.   }
  900.  
  901.   this.startConnection(aUsername);
  902. }
  903.  
  904. nsNotifierService.prototype.accountCheckComplete = function() {
  905.   // http observer - cleanup
  906.   if (this.supportsMultiMode()) {
  907.     this.observerService.removeObserver(this, "http-on-modify-request");
  908.     this.observerService.removeObserver(this, "http-on-examine-response");
  909.   }
  910.  
  911.   this.channel = null;
  912.  
  913.   this.currentUserQueue++;
  914.  
  915.   if (this.currentUserQueue < this.userQueue.length) {
  916.     this.accountCheckStart(this.userQueue[this.currentUserQueue]);
  917.   } else {
  918.     // no longer auto connecting
  919.     this.isAutoConnecting = false;
  920.     this.currentUserQueue = null;
  921.  
  922.     // increment the connection counter
  923.     this.connectionCounter++;
  924.  
  925.     this.pushStateChange(null, nsINotifierProgressListener.ACCOUNTS_CHECK_COMPLETED);
  926.  
  927.     this.setTimeout(this.getPrefBranch().getIntPref("gm-notifier.update.interval"));
  928.   }
  929. }
  930.  
  931. /**
  932.  * startConnection and callback are the Gmail specific parts.
  933.  */ 
  934.  
  935.  
  936. var gConnectionPhases = {start: 1, gmail1phase1: 2, gmail2phase1: 3, finish: 4, finish2: 5};
  937.  
  938. nsNotifierService.prototype.startConnection = function (aUsername) {
  939.   this.logItem("  StartConnection: Init");
  940.  
  941.   if (!aUsername) {
  942.     return;
  943.   }
  944.  
  945.   var start_time = (new Date()).getTime();
  946.   this.logItem("  -- Username ("+aUsername+") found ");
  947.  
  948.   if (!this.userList[aUsername]) {
  949.     this.logItem("  -- Uhoh, userlist didn't have user, create one");
  950.     this.userList[aUsername] = this.newUserListItem(aUsername, null);
  951.   }
  952.  
  953.   this.userList[aUsername].resetState = false;
  954.   this.reusingCookie = false;
  955.   this.connectionPhase = gConnectionPhases.start;
  956.  
  957.   this.pushStateChange(aUsername, nsINotifierProgressListener.LOGIN_INITIATED);
  958.  
  959.   var urlprotocol = "https://";//this.getURLProtocol();
  960.   var hasHostedDomain = this.isHostedDomain(aUsername);
  961.  
  962.   // if we have stored cookie data, go directly to last phase
  963.   if (this.userList[aUsername].cookieObject.GX) {
  964.     this.reusingCookie = true;
  965.     this.logItem("  -- attempting quick connect");
  966.  
  967.     if (this.userList[aUsername].isGmail20) {
  968.       this.connectionPhase = gConnectionPhases.finish2;
  969.       var url = urlprotocol + "mail.google.com/mail/?ik="+this.userList[aUsername].idkey+"&view=tl&start=0&num=25&rt=h&q=is%3Aunread&search=query";
  970.  
  971.       this.talkToServer(aUsername, url,
  972.                         null, null, urlprotocol + "mail.google.com/",
  973.                         this.callback);
  974.     } else {
  975.       this.connectionPhase = gConnectionPhases.finish;
  976.       this.talkToServer(aUsername, urlprotocol+ "mail.google.com/mail/?search=query&q=is%3Aunread&view=tl&start=0&init=1&ui=1",
  977.                         null, null, urlprotocol + "mail.google.com/",
  978.                         this.callback);
  979.     }
  980.   } else if (hasHostedDomain && (this.userList[aUsername].cookieObject.GXAS || this.userList[aUsername].cookieObject.GXAS_SEC)) {
  981.     this.reusingCookie = true;
  982.     this.logItem("  -- attempting hosted quick connect");
  983.  
  984.     var hosteddomain = this.userList[aUsername].hosteddomain;
  985.  
  986.     if (this.userList[aUsername].isGmail20) {
  987.       this.connectionPhase = gConnectionPhases.finish2;
  988.       // XXX: here also had to hardcode http
  989.       this.talkToServer(aUsername, "http://mail.google.com/a/"+hosteddomain+"/?ik="+this.userList[aUsername].idkey+"&view=tl&start=0&num=25&rt=h&q=is%3Aunread&search=query",
  990.                         null, null, urlprotocol + "mail.google.com/a/"+hosteddomain,
  991.                         this.callback);
  992.     } else {
  993.       this.connectionPhase = gConnectionPhases.finish;
  994.       this.talkToServer(aUsername, urlprotocol+ "mail.google.com/a/"+hosteddomain+"/?search=query&q=is%3Aunread&view=tl&start=0&init=1&ui=1",
  995.                         null, null, urlprotocol + "mail.google.com/a/"+hosteddomain,
  996.                         this.callback);
  997.     }
  998.   } else {
  999.     // set GMAIL_LOGIN
  1000.     var now = (new Date()).getTime();
  1001.     var cookie = "T" + start_time + "/" + start_time + "/" + now;
  1002.     var d = new Date();
  1003.     var expr = new Date(d.getFullYear()+1);
  1004.     //this.userList[aUsername].cookieObject.GMAIL_LOGIN = "GMAIL_LOGIN="+cookie;
  1005.  
  1006.     if (hasHostedDomain) {
  1007.       var index = aUsername.indexOf("@");
  1008.       var realusername =  aUsername.substring(0, index);
  1009.       var hosteddomain = aUsername.substring(index + 1, aUsername.length);
  1010.       this.userList[aUsername].hosteddomain = hosteddomain;
  1011.       this.logItem("  -- hosted domain found: " + hosteddomain);
  1012.  
  1013.       //var data = "at=null&continue=" + urlprotocol + "mail.google.com/hosted/"+hosteddomain + "&service=mail&userName=" + encodeURIComponent(realusername)
  1014.         //         + "&password=" + encodeURIComponent(this.getPassword(aUsername)) + "&persistent=true";
  1015.       var data = "at=null&continue="+encodeURIComponent("https://mail.google.com/a/"+hosteddomain+"/")+"&service=mail&Email=" + encodeURIComponent(realusername)
  1016.                  + "&Passwd=" + encodeURIComponent(this.getPassword(aUsername));
  1017.  
  1018.       this.talkToServer(aUsername, "https://www.google.com/a/"+hosteddomain+"/LoginAction2?service=mail", data,
  1019.                         null, "https://www.google.com/a/"+hosteddomain+"/ServiceLogin?service=mail&passive=true&rm=false&continue=http%s3A%2F%2Fmail.google.com%2Fa%2F"+hosteddomain+"%2F%3Fshva%3D1<mpl=default<mplcache=2", this.callback);
  1020.     } else {
  1021.       var data = "?service=mail&Email=" + encodeURIComponent(aUsername)
  1022.                  + "&Passwd=" + encodeURIComponent(this.getPassword(aUsername)) +
  1023.                  "&rm=false&null=Sign%20in&continue=" + urlprotocol + "mail.google.com/mail?nsr=1&ui=html&zy=l";
  1024.  
  1025.       this.talkToServer(aUsername, "https://www.google.com/accounts/ServiceLoginAuth?service=mail", data,
  1026.                         null, "https://www.google.com/accounts/ServiceLoginAuth", this.callback);
  1027.     }
  1028.   }
  1029. }
  1030.  
  1031. /*
  1032.    Phase              Description
  1033.    0                  Before anything has happend
  1034.    1                  First connection
  1035.    ...
  1036. */
  1037.  
  1038. nsNotifierService.prototype.callback = function(aData, aRequest, aUsername) {
  1039.   this.logItem("    callback called for ("+aUsername+"), phase" + this.connectionPhase);
  1040.  
  1041.   this.logItem("    -- data ("+this.connectionPhase+")<textarea>"+encodeURI(aData)+"</textarea>");
  1042.  
  1043.   //dump("\n\n\n----------\n"+aData+"\n----------\n\n\n");
  1044.   this.processConnectionPhase(aData, aRequest, aUsername);
  1045. }
  1046.  
  1047.  
  1048. nsNotifierService.prototype.processConnectionPhase = function(aData, aRequest, aUsername) {
  1049.   var urlprotocol = this.getURLProtocol();
  1050.  
  1051.   switch (this.connectionPhase) {
  1052.     case gConnectionPhases.start:
  1053.       var cookieData;
  1054.  
  1055.       // if no cookies sent, an exception is thrown
  1056.       /* try{
  1057.           var httpChannel = aRequest.QueryInterface(Components.interfaces.nsIHttpChannel)
  1058.           cookieData = httpChannel.getRequestHeader("cookie");
  1059.         } catch(e){} */
  1060.       var val = aData.indexOf("location.replace");
  1061.       var gmail20 = false;
  1062.  
  1063.       // gmail 2.0 ?
  1064.       if (val < 0) {
  1065.         // 2.0 has a meta redirect
  1066.         // XXX: what about hosted!!!
  1067.         val = aData.indexOf("URL=http://mail.google.com/mail");
  1068.  
  1069.         if (val < 0) {
  1070.           // old gmail 2.0
  1071.           val = aData.indexOf("MainPage.CheckLoaded();");
  1072.         }
  1073.  
  1074.         // newer way ?
  1075.         if (val < 0) {
  1076.           val = aData.indexOf("function onLoadTimeout()");
  1077.         }
  1078.  
  1079.         if (val > 0) {
  1080.           gmail20 = true;
  1081.           this.userList[aUsername].isGmail20 = true;
  1082.           this.logItem(" -- gmail 2.0 detected");
  1083.         }
  1084.  
  1085.         if (val < 0 && this.isHostedDomain(aUsername)) {
  1086.           // hosted gmail 2.0?
  1087.           val = aData.indexOf("ID_KEY:");
  1088.  
  1089.           if (val > 0) {
  1090.             this.logItem(" -- hosted gmail 2.0 detected");
  1091.             this.userList[aUsername].isGmail20 = true;
  1092.             gmail20 = true;
  1093.           } else {
  1094.             // last ditch attempts
  1095.             // look for <link rel="alternate" type="application/atom+xml"
  1096.             val = aData.indexOf('<link rel="alternate" type="application/atom+xml"');
  1097.             if (val > 0) {
  1098.               this.logItem(" -- hosted gmail 2.0 detected");
  1099.               this.userList[aUsername].isGmail20 = true;
  1100.               gmail20 = true;
  1101.             }
  1102.           }
  1103.         }
  1104.  
  1105.         if (val < 0) {
  1106.           this.userList[aUsername].isGmail20 = false;
  1107.         }
  1108.       }
  1109.  
  1110.       if (val < 0) {
  1111.         // XXX - check if its an image request
  1112.  
  1113.         // check if it is a password re-request
  1114.         if (aData.indexOf("<form action=\"LoginAuth\"") >= 0 || 
  1115.             aData.indexOf("errormsg_0_Passwd") >= 0) {
  1116.           this.accountCheckResult(aUsername, nsINotifierProgressListener.LOGIN_DETAILS_INVALID);
  1117.         } else {
  1118.           this.accountCheckResult(aUsername, nsINotifierProgressListener.LOGIN_FAILED);
  1119.         }
  1120.  
  1121.         this.accountCheckComplete();
  1122.         return;
  1123.       }
  1124.  
  1125.       var url = urlprotocol;
  1126.       if (this.userList[aUsername].hosteddomain) {
  1127.         url += "mail.google.com/hosted/" + this.userList[aUsername].hosteddomain;
  1128.       } else {
  1129.         url += "mail.google.com/mail";
  1130.       }
  1131.  
  1132.       if (gmail20) {
  1133.         if (this.isHostedDomain(aUsername)) {
  1134.           // we can skip to the next phase here, as ID key is present already
  1135.           // for hosted gmail 2.0 accounts
  1136.           this.connectionPhase = gConnectionPhases.gmail2phase1;
  1137.           this.processConnectionPhase(aData, aRequest, aUsername);
  1138.         } else {
  1139.           var regurl = new RegExp('URL=(.*)"').exec(aData);
  1140.           if (regurl && regurl[1]) {
  1141.             url = regurl[1];
  1142.           } else {
  1143.           }
  1144.  
  1145.           // XXX: hack - need to only load cookies for the domain!
  1146.           delete this.userList[aUsername].cookieObject.GAUSR;
  1147.  
  1148.           this.connectionPhase = gConnectionPhases.gmail2phase1;
  1149.           this.talkToServer(aUsername, url, null, null, url+"/",
  1150.                             this.callback);
  1151.         }
  1152.       } else {
  1153.         //var match = aData.match(/location.replace\((.*)\)/gm);
  1154.         //url = match[0].substr(18, match[0].length-2-18);
  1155.         this.connectionPhase = gConnectionPhases.gmail1phase1;
  1156.         this.talkToServer(aUsername, url + "?ui", null, null, url+"/",
  1157.                           this.callback);
  1158.       }
  1159.       break;
  1160.  
  1161.     case gConnectionPhases.gmail1phase1:
  1162.       var url = urlprotocol;
  1163.       if (this.userList[aUsername].hosteddomain) {
  1164.         url += "mail.google.com/hosted/" + this.userList[aUsername].hosteddomain;
  1165.       } else {
  1166.         url += "mail.google.com/mail";
  1167.       }
  1168.  
  1169.       this.connectionPhase = gConnectionPhases.finish;
  1170.       this.logItem("final url: "+url);
  1171.       this.talkToServer(aUsername,
  1172.                         url + "/?search=query&q=is%3Aunread&view=tl&start=0&init=1&ui=1",
  1173.                         null, null, url, this.callback);
  1174.       break;
  1175.  
  1176.     case gConnectionPhases.gmail2phase1:
  1177.       this.logItem("  looking for idkey");
  1178.  
  1179.       // figure out the id key
  1180.       var result = new RegExp("ID_KEY = \'([a-zA-Z0-9]*)\'").exec(aData);
  1181.  
  1182.       if (!result) {
  1183.         // can also be: ID_KEY:'...'
  1184.         result = new RegExp("ID_KEY:\'([a-zA-Z0-9]*)\'").exec(aData);
  1185.       }
  1186.  
  1187.       if (!result) {
  1188.         // can also be: ID_KEY:"..."
  1189.         result = new RegExp("ID_KEY:\"([a-zA-Z0-9]*)\"").exec(aData);
  1190.         var newHostedType = true;
  1191.       }
  1192.  
  1193.       var url = urlprotocol;
  1194.       if (this.userList[aUsername].hosteddomain) {
  1195.         if (!newHostedType) {
  1196.           // XXX: blah, need to hard code http here for some reason - but not for
  1197.           //"new" hosted accounts
  1198.           url = "http://mail.google.com/a/" + this.userList[aUsername].hosteddomain+"/";
  1199.         } else {
  1200.           url += "mail.google.com/a/" + this.userList[aUsername].hosteddomain+"/";
  1201.         }
  1202.       } else {
  1203.         url += "mail.google.com/mail";
  1204.       }
  1205.  
  1206.       // failed to login
  1207.       if (!result) {
  1208.         if (this.reusingCookie) {
  1209.           this.logItem("    - Login failed, but were reusing cookie data, so trying afresh.");
  1210.  
  1211.           // if we failed but were reusing the cookie, clear it and restart
  1212.           this.clearCookieObject(aUsername);
  1213.           this.reusingCookie = false;
  1214.  
  1215.           this.startConnection(aUsername);
  1216.           break;
  1217.         } else {
  1218.           // if non en-US, we need to switch to gmail 1.0
  1219.           if (aData.indexOf('(js.location.replace("?ui=1' > 0)) {
  1220.               this.userList[aUsername].isGmail20 = false;
  1221.               this.logItem("  - Not Gmail 2.0 after all - probably non-US locale.");
  1222.  
  1223.               this.connectionPhase = gConnectionPhases.finish;
  1224.               this.talkToServer(aUsername,
  1225.                         url + "/?search=query&q=is%3Aunread&view=tl&start=0&init=1&ui=1",
  1226.                         null, null, url, this.callback);
  1227.               break;
  1228.           } else {
  1229.             this.logItem("    - Login failed, page not the correct one.");
  1230.  
  1231.             this.accountCheckResult(aUsername, nsINotifierProgressListener.LOGIN_FAILED);
  1232.             this.accountCheckComplete();
  1233.             break;
  1234.           }
  1235.         }
  1236.       }
  1237.       var idkey = result[1];
  1238.  
  1239.       this.userList[aUsername].idkey = idkey;
  1240.  
  1241.       url += "?ik="+idkey+"&view=tl&start=0&num=25&rt=h&q=is%3Aunread&search=query";
  1242.       this.connectionPhase = gConnectionPhases.finish2;
  1243.  
  1244.       this.talkToServer(aUsername, url, null, null, url+"/", this.callback);
  1245.  
  1246.       break;
  1247.  
  1248.     case gConnectionPhases.finish2:
  1249.       // gmail 2.0 finish
  1250.       this.logItem("  connecting to gmail 2.0 complete.");
  1251.  
  1252.       // check if right page - has to have a ti
  1253.       if (!aData.match(/\["ti",.*\n.*\]/gm)) {
  1254.         // failed to login
  1255.         if (this.reusingCookie) {
  1256.           this.logItem("    - Login failed, but were reusing cookie data, so trying afresh.");
  1257.  
  1258.           // if we failed but were reusing the cookie, clear it and restart
  1259.           this.clearCookieObject(aUsername);
  1260.           this.reusingCookie = false;
  1261.  
  1262.           this.startConnection(aUsername);
  1263.         } else {
  1264.           this.logItem("    - Login failed, final page not the correct one.");
  1265.           //this.logItem(aData);
  1266.  
  1267.           this.accountCheckResult(aUsername, nsINotifierProgressListener.LOGIN_FAILED);
  1268.           this.accountCheckComplete();
  1269.         }
  1270.  
  1271.         return;
  1272.       }
  1273.  
  1274.       // account check was successfull
  1275.       this.accountCheckSuccess(aUsername);
  1276.  
  1277.       var obj = {totalunread: 0, inboxunread: 0, labels: [], quota: {}};
  1278.  
  1279.       // handle the total unread
  1280.       //   example: D(["ti","Search results for: is:unread",900,1,3000,"is:unread",_A(),"621a",700]);
  1281.       var ti = aData.match(/\["ti",.*\n.*\]/gm);
  1282.       this.logItem("  -  ti is " + ti);
  1283.  
  1284.       var arr = ti[0].split(",");
  1285.       obj.totalunread = parseInt(arr[2], 10);
  1286.       this.logItem("  -  total unread count is " + obj.totalunread);
  1287.  
  1288.       // now handle inbox and labels, which are stored in ld
  1289.       var ld = aData.match(/\["ld",.*\n(.*]\n)+\]/gm);
  1290.       this.logItem("  -  ld is " + ld.length);
  1291.  
  1292.       // setup a sandbox for eval usage
  1293.       var s = Components.utils.Sandbox("about:blank");
  1294.  
  1295.       // ld has three parts = "ld", general data (inbox, span, etc) and finally labels
  1296.       var data = Components.utils.evalInSandbox(ld[0], s);
  1297.       // need the ^i entry, which is the first, and the unread count is in the 2nd position
  1298.       obj.inboxunread = data[1][0][1];
  1299.  
  1300.       // now handle labels
  1301.       var labels = data[2];
  1302.  
  1303.       // utf-8 fun
  1304.       var conv = Components.classes["@mozilla.org/intl/utf8converterservice;1"].getService(Components.interfaces.nsIUTF8ConverterService);
  1305.  
  1306.       for (var i = 0; i < labels.length; i++) {
  1307.         var name = escape(conv.convertStringToUTF8(labels[i][0], "utf-8", false));
  1308.         var unread = labels[i][1];
  1309.         obj.labels.push({name: name, unread: unread});
  1310.       }
  1311.  
  1312.       // now handle quota
  1313.       var qu = aData.match(/\["qu",.*\]/);
  1314.       myArray = Components.utils.evalInSandbox(qu[0], s);
  1315.  
  1316.       obj.quota.spaceused = myArray[1];
  1317.       obj.quota.totalmb = myArray[2];
  1318.       obj.quota.spaceusedpercent = myArray[3];
  1319.  
  1320.       this.updateUserList(aUsername, obj);
  1321.       this.accountCheckComplete();
  1322.       break;
  1323.  
  1324.  
  1325.     case gConnectionPhases.finish:
  1326.       this.logItem("  connecting to gmail complete.");
  1327.  
  1328.       // Gmail now serves 2 versions of the ds string:
  1329.       // D(["ds",46,0,0,0,0,1298,0] or
  1330.       // D(["ds",[["inbox",3]\n,["drafts",2]\n,["spam",1053]\n]\n]n);
  1331.  
  1332.       var val;
  1333.       var newDS = false;
  1334.  
  1335.       if (aData.match(/\["ds",\[\[/)) {
  1336.         // new way
  1337.          this.logItem("    -- new ds");
  1338.         val = aData.match(/\["ds",.*\n(.*]\n)+\]/gm);
  1339.  
  1340.         newDS = true;
  1341.       } else {
  1342.         val = aData.match(/\["ds",.*\]/);
  1343.         this.logItem("    -- old ds");
  1344.       }
  1345.  
  1346.       if (!val) {
  1347.         // failed to login
  1348.         if (this.reusingCookie) {
  1349.           this.logItem("    - Login failed, but were reusing cookie data, so trying afresh.");
  1350.  
  1351.           // if we failed but were reusing the cookie, clear it and restart
  1352.           this.clearCookieObject(aUsername);
  1353.           this.reusingCookie = false;
  1354.  
  1355.           this.startConnection(aUsername);
  1356.         } else {
  1357.           this.logItem("    - Login failed, final page not the correct one.");
  1358.           //this.logItem(aData);
  1359.  
  1360.           this.accountCheckResult(aUsername, nsINotifierProgressListener.LOGIN_FAILED);
  1361.           this.accountCheckComplete();
  1362.         }
  1363.  
  1364.         return;
  1365.       }
  1366.  
  1367.       if (!this.multiuser) {
  1368.         // if we are in single user mode, set the user to be the default
  1369.         var defaultUser = this.getPrefBranch().getCharPref("gm-notifier.users.default");
  1370.  
  1371.         if (defaultUser != aUsername) {
  1372.           this.getPrefBranch().setCharPref("gm-notifier.users.default", aUsername);
  1373.         }
  1374.       }
  1375.  
  1376.       // if we aren't logged in, we are now and tell the world
  1377.       if (!this.loggedIn) {
  1378.         // update the pref
  1379.         this.getPrefBranch().setBoolPref("gm-notifier.loggedin", true);
  1380.  
  1381.         this.loggedIn = true;
  1382.         this.pushStateChange(null, nsINotifierProgressListener.NOTIFIER_LOGGED_IN);
  1383.       }
  1384.  
  1385.       // success!
  1386.       this.accountCheckResult(aUsername, nsINotifierProgressListener.LOGIN_SUCCESS);
  1387.  
  1388.       // get the unread count
  1389.       var ts = aData.match(/\["ts",.*\]/gm);
  1390.       var myArray = eval(ts[0]);
  1391.       this.logItem("  -  ts is " + ts);
  1392.  
  1393.       var totalUnread = myArray[3];
  1394.  
  1395.       // handle inbox
  1396.       myArray = eval(val[0]);
  1397.       this.logItem("  -  val[0] " +  val[0]);
  1398.  
  1399.       var inboxUnread = 0;
  1400.       if (newDS) {
  1401.         inboxUnread = myArray[1][0][1];
  1402.       } else {
  1403.         inboxUnread = myArray[1];
  1404.       }
  1405.  
  1406.       this.logItem("  -  inboxUnread " +  inboxUnread + " and  this.userList[aUsername].inboxUnread is " +  this.userList[aUsername].inboxUnread);
  1407.  
  1408.       this.userList[aUsername].inboxNew = inboxUnread -  this.userList[aUsername].inboxUnread;
  1409.       this.userList[aUsername].inboxUnread = inboxUnread;
  1410.  
  1411.       // clear the array
  1412.       this.userList[aUsername].folders = new Array();
  1413.       this.userList[aUsername].folders.push(this.createFolder("inbox", inboxUnread));
  1414.  
  1415.       // XXX: do we really need this?
  1416.       if (this.userList[aUsername].inboxNew < 0) {
  1417.         this.userList[aUsername].inboxNew = 0;
  1418.       }
  1419.  
  1420.       // utf-8 fun
  1421.       var conv = Components.classes["@mozilla.org/intl/utf8converterservice;1"].getService(Components.interfaces.nsIUTF8ConverterService);
  1422.  
  1423.       // handle labels
  1424.       var labelsVal = aData.match(/\["ct",.*\n(.*]\n)+\]/gm);
  1425.       if (labelsVal) {
  1426.         var labelsArray = eval(labelsVal[0])[1];
  1427.  
  1428.         for (var run = 0; run < labelsArray.length; run++) {
  1429.           var folderName = escape(conv.convertStringToUTF8(labelsArray[run][0], "utf-8", false));
  1430.  
  1431.           // gmail skins extension workaround
  1432.           var skip = (folderName.indexOf("gmskin%3A") == 0);
  1433.  
  1434.           if (!skip) {
  1435.            this.userList[aUsername].folders.push(this.createFolder(folderName, labelsArray[run][1]));
  1436.            this.logItem("  - Folder found (name: " + folderName + " and unread emails: " + labelsArray[run][1] + ")");
  1437.           }
  1438.         }
  1439.       }
  1440.  
  1441.       // new/unread mail check
  1442.       this.logItem("  -inboxUnread: " + inboxUnread + ", unreadEmails: " + this.userList[aUsername].unreadEmails + ", inboxNew: "+this.userList[aUsername].inboxNew+", totalunread: " + totalUnread);
  1443.  
  1444.       var showInboxOnly = this.getPrefBranch().getBoolPref("gm-notifier.ui.counter.showInbox");
  1445.       var hasNewMail = (totalUnread > this.userList[aUsername].unreadEmails);
  1446.  
  1447.       if (!hasNewMail && showInboxOnly) {
  1448.         hasNewMail = (this.userList[aUsername].inboxNew > 0);
  1449.       }
  1450.  
  1451.       if ((this.userList[aUsername].unreadEmails != null) && hasNewMail) {
  1452.         this.logItem("  New Unread Mail Found!");
  1453.         // new email
  1454.         this.userList[aUsername].newEmails = totalUnread - this.userList[aUsername].unreadEmails;
  1455.         this.userList[aUsername].unreadEmails = totalUnread;
  1456.  
  1457.         if (showInboxOnly && (this.userList[aUsername].inboxNew == 0)) {
  1458.           // show inbox only, but new mail wasn't in inbox
  1459.           this.pushStateChange(aUsername, nsINotifierProgressListener.NO_NEW_MAIL);
  1460.           //this.setNewMailMode(aUsername, false);
  1461.         } else {
  1462.           this.pushStateChange(aUsername, nsINotifierProgressListener.NEW_MAIL);
  1463.           this.setNewMailMode(aUsername, true);
  1464.           var count = this.getNewCount(aUsername);
  1465.           this.newMailNotification(aUsername, count);
  1466.           this.newMailCount = count;
  1467.         }
  1468.       } else if (this.userList[aUsername].unreadEmails == null && totalUnread > 0) {
  1469.         // first time
  1470.         this.logItem("  New Mail Found!");
  1471.         this.userList[aUsername].newEmails = totalUnread;
  1472.         this.userList[aUsername].unreadEmails = totalUnread;
  1473.  
  1474.         if (showInboxOnly && (this.userList[aUsername].inboxNew == 0)) {
  1475.           // show inbox only, but new mail wasn't in inbox
  1476.           this.pushStateChange(aUsername, nsINotifierProgressListener.NO_NEW_MAIL);
  1477.         } else {
  1478.           this.pushStateChange(aUsername, nsINotifierProgressListener.NEW_MAIL);
  1479.           this.setNewMailMode(aUsername, true);
  1480.           this.logItem("  - amount of new mail is " + this.userList[aUsername].newEmails);
  1481.           var count = this.getDisplayCount(aUsername);
  1482.           this.logItem("  - mail notification about to be set, new mail count is " + count);
  1483.           this.newMailNotification(aUsername, count);
  1484.           this.newMailCount = count;
  1485.         }
  1486.       } else {
  1487.         // check if the count decreased
  1488.         var decreased = false;
  1489.  
  1490.         if (totalUnread < this.userList[aUsername].unreadEmails) {
  1491.           decreased = true;
  1492.         }
  1493.  
  1494.         this.userList[aUsername].unreadEmails = totalUnread;
  1495.         this.logItem("  No New Unread Mail Found!");
  1496.         this.pushStateChange(aUsername, nsINotifierProgressListener.NO_NEW_MAIL);
  1497.  
  1498.         // only set mode to false if the count decreased. So if the user hasn't
  1499.         // checked the mail and we had new mail before, we stay in the new mail
  1500.         // mode.
  1501.         if (decreased) {
  1502.           this.userList[aUsername].newEmails = 0;
  1503.           this.setNewMailMode(aUsername, false);
  1504.         } else if (this.getNewMailMode(aUsername) &&
  1505.                    this.getPrefBranch().getBoolPref("gm-notifier.notification.repeat")) {
  1506.           this.logItem("  - mail notification about to be set again, new mail count is " + this.newMailCount);
  1507.           this.newMailNotification(aUsername, this.newMailCount);
  1508.         } else {
  1509.           this.userList[aUsername].newEmails = 0;
  1510.         }
  1511.       }
  1512.  
  1513.       val = aData.match(/\["qu",.*\]/);
  1514.       myArray = eval(val[0]);
  1515.  
  1516.       var spaceused, totalmb, spaceusedpercent;
  1517.       spaceused = myArray[1];
  1518.       totalmb = myArray[2];
  1519.       spaceusedpercent = myArray[3];
  1520.  
  1521.       // if we have %, parseInt time.  This happens for localized gmail right
  1522.       // now
  1523.       if (spaceusedpercent.indexOf("%") != -1) {
  1524.         function _parseInt(aString) {
  1525.           var parsed = parseInt(aString, 10);
  1526.           if (parsed != NaN) {
  1527.             return parsed;
  1528.           }
  1529.  
  1530.           return aString;
  1531.         }
  1532.  
  1533.         spaceused = _parseInt(spaceused);
  1534.         totalmb = _parseInt(totalmb);
  1535.         spaceusedpercent = _parseInt(spaceusedpercent);
  1536.       }
  1537.  
  1538.       this.userList[aUsername].space_used_mb = spaceused;
  1539.       this.userList[aUsername].total_mb =totalmb;
  1540.       this.userList[aUsername].space_used_percent = spaceusedpercent;
  1541.  
  1542.       this.accountCheckComplete();
  1543.       //this.setTimer();
  1544.       break;
  1545.   }
  1546. }
  1547.  
  1548. nsNotifierService.prototype.updateUserList = function(aUsername, aData) {
  1549.   var user = this.userList[aUsername];
  1550.   var totalUnread = aData.totalunread;
  1551.  
  1552.   this.logItem("  -  inboxUnread " +  aData.inboxunread + " and  this.userList[aUsername].inboxUnread is " +  user.inboxUnread);
  1553.  
  1554.   user.inboxNew = aData.inboxunread -  user.inboxUnread;
  1555.   user.inboxUnread = aData.inboxunread;
  1556.  
  1557.   // XXX: do we really need this?
  1558.   if (user.inboxNew < 0) {
  1559.     user.inboxNew = 0;
  1560.   }
  1561.  
  1562.   // folders
  1563.  
  1564.   // clear the array
  1565.   user.folders = new Array();
  1566.   user.folders.push(this.createFolder("inbox", aData.inboxunread));
  1567.  
  1568.   for (var i = 0; i < aData.labels.length; i++) {
  1569.     // gmail skins extension workaround
  1570.     var skip = (aData.labels[i].name.indexOf("gmskin%3A") == 0);
  1571.  
  1572.     if (!skip) {
  1573.      user.folders.push(this.createFolder(aData.labels[i].name, aData.labels[i].unread));
  1574.      this.logItem("  - Folder found (name: " + aData.labels[i].name + " and unread emails: " + aData.labels[i].unread + ")");
  1575.     }
  1576.   }
  1577.  
  1578.   // quota
  1579.   user.space_used_mb = aData.quota.spaceused;
  1580.   user.total_mb = aData.quota.totalmb;
  1581.   user.space_used_percent = aData.quota.spaceusedpercent;
  1582.  
  1583.   // new/unread mail check
  1584.   this.logItem("  -inboxUnread: " +  aData.inboxunread + ", unreadEmails: " + user.unreadEmails + ", inboxNew: "+user.inboxNew+", totalunread: " + totalUnread);
  1585.  
  1586.   var showInboxOnly = this.getPrefBranch().getBoolPref("gm-notifier.ui.counter.showInbox");
  1587.   var hasNewMail = (totalUnread > user.unreadEmails);
  1588.  
  1589.   if (!hasNewMail && showInboxOnly) {
  1590.     hasNewMail = (user.inboxNew > 0);
  1591.   }
  1592.  
  1593.   if ((user.unreadEmails != null) && hasNewMail) {
  1594.     this.logItem("  New Unread Mail Found!");
  1595.     // new email
  1596.     user.newEmails = totalUnread - user.unreadEmails;
  1597.     user.unreadEmails = totalUnread;
  1598.  
  1599.     if (showInboxOnly && (user.inboxNew == 0)) {
  1600.       // show inbox only, but new mail wasn't in inbox
  1601.       this.pushStateChange(aUsername, nsINotifierProgressListener.NO_NEW_MAIL);
  1602.       //this.setNewMailMode(aUsername, false);
  1603.     } else {
  1604.       this.pushStateChange(aUsername, nsINotifierProgressListener.NEW_MAIL);
  1605.       this.setNewMailMode(aUsername, true);
  1606.       var count = this.getNewCount(aUsername);
  1607.       this.newMailNotification(aUsername, count);
  1608.       this.newMailCount = count;
  1609.     }
  1610.   } else if (user.unreadEmails == null && totalUnread > 0) {
  1611.     // first time
  1612.     this.logItem("  New Mail Found!");
  1613.     user.newEmails = totalUnread;
  1614.     user.unreadEmails = totalUnread;
  1615.  
  1616.     if (showInboxOnly && (user.inboxNew == 0)) {
  1617.       // show inbox only, but new mail wasn't in inbox
  1618.       this.pushStateChange(aUsername, nsINotifierProgressListener.NO_NEW_MAIL);
  1619.     } else {
  1620.       this.pushStateChange(aUsername, nsINotifierProgressListener.NEW_MAIL);
  1621.       this.setNewMailMode(aUsername, true);
  1622.       this.logItem("  - amount of new mail is " + user.newEmails);
  1623.       var count = this.getDisplayCount(aUsername);
  1624.       this.logItem("  - mail notification about to be set, new mail count is " + count);
  1625.       this.newMailNotification(aUsername, count);
  1626.       this.newMailCount = count;
  1627.     }
  1628.   } else {
  1629.     // check if the count decreased
  1630.     var decreased = false;
  1631.  
  1632.     if (totalUnread < user.unreadEmails) {
  1633.       decreased = true;
  1634.     }
  1635.  
  1636.     user.unreadEmails = totalUnread;
  1637.     this.logItem("  No New Unread Mail Found!");
  1638.     this.pushStateChange(aUsername, nsINotifierProgressListener.NO_NEW_MAIL);
  1639.  
  1640.     // only set mode to false if the count decreased. So if the user hasn't
  1641.     // checked the mail and we had new mail before, we stay in the new mail
  1642.     // mode.
  1643.     if (decreased) {
  1644.       user.newEmails = 0;
  1645.       this.setNewMailMode(aUsername, false);
  1646.     } else if (this.getNewMailMode(aUsername) &&
  1647.                this.getPrefBranch().getBoolPref("gm-notifier.notification.repeat")) {
  1648.       this.logItem("  - mail notification about to be set again, new mail count is " + this.newMailCount);
  1649.       this.newMailNotification(aUsername, this.newMailCount);
  1650.     } else {
  1651.       user.newEmails = 0;
  1652.     }
  1653.   }
  1654. }
  1655.  
  1656. nsNotifierService.prototype.accountCheckSuccess = function(aUsername) {
  1657.   if (!this.multiuser) {
  1658.     // if we are in single user mode, set the user to be the default
  1659.     var defaultUser = this.getPrefBranch().getCharPref("gm-notifier.users.default");
  1660.  
  1661.     if (defaultUser != aUsername) {
  1662.       this.getPrefBranch().setCharPref("gm-notifier.users.default", aUsername);
  1663.     }
  1664.   }
  1665.  
  1666.   // if we aren't logged in, we are now and tell the world
  1667.   if (!this.loggedIn) {
  1668.     // update the pref
  1669.     this.getPrefBranch().setBoolPref("gm-notifier.loggedin", true);
  1670.  
  1671.     this.loggedIn = true;
  1672.     this.pushStateChange(null, nsINotifierProgressListener.NOTIFIER_LOGGED_IN);
  1673.   }
  1674.  
  1675.   // success!
  1676.   this.accountCheckResult(aUsername, nsINotifierProgressListener.LOGIN_SUCCESS);
  1677. }
  1678.  
  1679. nsNotifierService.prototype.buildCookieString = function(aCookieObject, aURI) {
  1680.   var cookiestring = "";
  1681.  
  1682.   for (var cookie in aCookieObject) {
  1683.     if (aCookieObject[cookie]) {
  1684.       // make sure the cookie fits the domain
  1685.       //this.logItem("c: "+cookie + " " + aURI.host + " - " + aCookieObject[cookie].domain);
  1686.       if (aURI.host == aCookieObject[cookie].domain || aURI.host.indexOf(aCookieObject[cookie].domain) >= 0) {
  1687.         if (aCookieObject[cookie].value) {
  1688.           cookiestring += aCookieObject[cookie].value + "; ";
  1689.         }
  1690.       }
  1691.     }
  1692.   }
  1693.  
  1694.   //this.logItem("c2: "+cookiestring);
  1695.  
  1696.   /*if (aCookieObject.GX) {
  1697.     cookie += aCookieObject.GX + " ";
  1698.   }
  1699.  
  1700.   if (aCookieObject.SID) {
  1701.     cookie += aCookieObject.SID + " ";
  1702.   }
  1703.  
  1704.   if (aCookieObject.LSID) {
  1705.     cookie += aCookieObject.LSID + " ";
  1706.   }
  1707.  
  1708.   if (aCookieObject.HID) {
  1709.     cookie += aCookieObject.HID + " ";
  1710.   }
  1711.  
  1712.   if (aCookieObject.GXAS) {
  1713.     cookie += aCookieObject.GXAS + " ";
  1714.   }
  1715.  
  1716.   if (aCookieObject.GXAS_SEC) {
  1717.     cookie += aCookieObject.GXAS_SEC + " ";
  1718.   }
  1719.  
  1720.   if (aCookieObject.S) {
  1721.     cookie += aCookieObject.S + " ";
  1722.   }*/
  1723.   return cookiestring;
  1724. }
  1725.  
  1726. nsNotifierService.prototype.clearCookieObject = function(aUsername) {
  1727.   for (var cookie in this.userList[aUsername].cookieObject) {
  1728.     delete this.userList[aUsername].cookieObject[cookie];
  1729.   }
  1730.  
  1731.   /*this.userList[aUsername].cookieObject.GX = "";
  1732.   this.userList[aUsername].cookieObject.SID = "";
  1733.   this.userList[aUsername].cookieObject.LSID = "";
  1734.   this.userList[aUsername].cookieObject.GXAS_SEC = "";
  1735.   this.userList[aUsername].cookieObject.GXAS = "";
  1736.   this.userList[aUsername].cookieObject.HID = "";
  1737.   this.userList[aUsername].cookieObject.S = "";*/
  1738.   delete this.userList[aUsername].rememberme;
  1739.   delete this.userList[aUsername].remembermeExpires;
  1740. }
  1741.  
  1742. nsNotifierService.prototype.loadCookieData = function(aUsername) {
  1743.   // We should follow the user's choice if to remember the login info beyond
  1744.   // the current session.
  1745.   var rememberme = this.userList[aUsername].rememberme;
  1746.   var remembermeExpires = this.userList[aUsername].remembermeExpires;
  1747.  
  1748.   var isHostedDomain = this.isHostedDomain(aUsername);
  1749.  
  1750.   if (rememberme == undefined) {
  1751.     var cookieMgr = Components.classes[kCOOKIESERVICE_CONTRACTID]
  1752.                               .getService(Components.interfaces.nsICookieManager);
  1753.  
  1754.     var e = cookieMgr.enumerator;
  1755.     var cookie, done = false;
  1756.     while (!done && e.hasMoreElements()) {
  1757.       cookie = e.getNext().QueryInterface(Components.interfaces.nsICookie);
  1758.  
  1759.       if (cookie.host == ".google.com" || cookie.host == "google.com") {
  1760.         if (!isHostedDomain && cookie.name == "rememberme") {
  1761.           done = true;
  1762.           rememberme = (cookie.value == "true");
  1763.           if (rememberme) {
  1764.             remembermeExpires = cookie.expires;
  1765.           } else {
  1766.             remembermeExpires = null;
  1767.           }
  1768.           this.logItem("  -- 1 rememberme cookie value is " + cookie.value);
  1769.         } else if (!isHostedDomain && cookie.name == "LSID" &&
  1770.                    (rememberme == undefined)) {
  1771.           // no remember me, check expire date
  1772.           var expireDate = new Date(1000 * cookie.expires);
  1773.           var currentDate = new Date();
  1774.  
  1775.           this.logItem("  "+expireDate.getFullYear() + " vs "  + currentDate.getFullYear());
  1776.  
  1777.           if ((expireDate.getFullYear() - 2) > currentDate.getFullYear()) {
  1778.             // expires in more than 2 years
  1779.             rememberme = true;
  1780.             remembermeExpires = cookie.expires;
  1781.  
  1782.             this.logItem("  -- 2 rememberme cookie value is " + cookie.value);
  1783.           }
  1784.         } else if (isHostedDomain && cookie.name == "HID") {
  1785.           if (cookie.path != "/hosted/" + this.getHostedDomain(aUsername) + "/") {
  1786.             continue;
  1787.           }
  1788.  
  1789.           // we are done
  1790.           done = true;
  1791.  
  1792.           // no remember me, check expire date
  1793.           var expireDate = new Date(1000 * cookie.expires);
  1794.           var currentDate = new Date();
  1795.  
  1796.           this.logItem("  "+expireDate.getFullYear() + " vs "  + currentDate.getFullYear());
  1797.  
  1798.           if ((expireDate.getFullYear() - 2) > currentDate.getFullYear()) {
  1799.             // expires in more than 2 years
  1800.             rememberme = true;
  1801.             remembermeExpires = cookie.expires;
  1802.  
  1803.             this.logItem("  -- 3 rememberme cookie value is " + cookie.value);
  1804.           }
  1805.         }
  1806.       }
  1807.     }
  1808.  
  1809.     if (done) {
  1810.       // store the rememberme
  1811.       this.userList[aUsername].rememberme = rememberme;
  1812.       this.userList[aUsername].remembermeExpires = remembermeExpires;
  1813.     }
  1814.   }
  1815.  
  1816.   this.logItem("  remembermeExpires: "+this.userList[aUsername].remembermeExpires);
  1817.  
  1818.   var cookieService = Components.classes["@mozilla.org/cookieService;1"]
  1819.                                 .getService(Components.interfaces.nsICookieService);
  1820.   var ioService = Components.classes["@mozilla.org/network/io-service;1"]
  1821.                             .getService(Components.interfaces.nsIIOService);
  1822.  
  1823.   function formatExpiresString(aExpires) {
  1824.     if (!aExpires) {
  1825.       return "0";
  1826.     }
  1827.  
  1828.     // stolen from the cookie prefs in Mozilla :)
  1829.     var sdf = Components.classes["@mozilla.org/intl/scriptabledateformat;1"]
  1830.                         .getService(Components.interfaces.nsIScriptableDateFormat);
  1831.     var date = new Date(1000 * aExpires);
  1832.     return sdf.FormatDateTime("", sdf.dateFormatLong,
  1833.                                   sdf.timeFormatSeconds,
  1834.                                   date.getFullYear(),
  1835.                                   date.getMonth() + 1,
  1836.                                   date.getDate(),
  1837.                                   date.getHours(),
  1838.                                   date.getMinutes(),
  1839.                                   date.getSeconds());
  1840.   }
  1841.  
  1842.   var expires = "";
  1843.   if (typeof(this.userList[aUsername].remembermeExpires) == "string") {
  1844.     expires = "Expires=" + formatExpiresString(this.userList[aUsername].remembermeExpires);
  1845.   }
  1846.  
  1847.   this.clearCookieData();
  1848.  
  1849.   // XXX: why not just load all cookies from the cookie object
  1850.   if (!isHostedDomain) {
  1851.     var gx = this.userList[aUsername].cookieObject.GX.value + ";";
  1852.  
  1853.     if (!!expires) {
  1854.       gx += expires+";";
  1855.     }
  1856.     gx += "Path=/mail";
  1857.  
  1858.     this.loadCookieIntoApp(this.userList[aUsername].cookieObject.GX);
  1859.     //cookieService.setCookieString(ioService.newURI("http://mail.google.com", null, null), null, gx, null);
  1860.  
  1861.     this.loadCookieIntoApp(this.userList[aUsername].cookieObject.SID);
  1862.     //cookieService.setCookieString(ioService.newURI("http://.google.com", null, null), null, this.userList[aUsername].cookieObject.SID.value + ";" + expires, null);
  1863.  
  1864.     this.loadCookieIntoApp(this.userList[aUsername].cookieObject.GXSP);
  1865.   } else {
  1866.     if (this.userList[aUsername].cookieObject.GXAS_SEC) {
  1867.       this.loadCookieIntoApp(this.userList[aUsername].cookieObject.GXAS_SEC);
  1868.       //cookieService.setCookieString(ioService.newURI("http://mail.google.com", null, null), null, this.userList[aUsername].cookieObject.GXAS_SEC.value + ";" + expires+";Path=/a", null);
  1869.     }
  1870.  
  1871.     this.loadCookieIntoApp(this.userList[aUsername].cookieObject.GXSP);
  1872.  
  1873.     if (this.userList[aUsername].cookieObject.GXAS) {
  1874.       this.loadCookieIntoApp(this.userList[aUsername].cookieObject.GXAS);
  1875.       //cookieService.setCookieString(ioService.newURI("http://mail.google.com", null, null), null, this.userList[aUsername].cookieObject.GXAS.value + ";" + expires+";Path=/a", null);
  1876.     }
  1877.  
  1878.     if (this.userList[aUsername].cookieObject.HID) {
  1879.       this.loadCookieIntoApp(this.userList[aUsername].cookieObject.HID);
  1880.       //cookieService.setCookieString(ioService.newURI("https://.www.google.com", null, null), null, this.userList[aUsername].cookieObject.HID.value + ";" + expires+";Path=/a/"+this.getHostedDomain(aUsername)+"/", null);
  1881.     }
  1882.  
  1883.     if (this.userList[aUsername].isGmail20) {
  1884.       this.loadCookieIntoApp(this.userList[aUsername].cookieObject.S);
  1885.       //cookieService.setCookieString(ioService.newURI("http://mail.google.com", null, null), null, this.userList[aUsername].cookieObject.S.value + ";" + expires+";Path=/a/"+this.getHostedDomain(aUsername), null);
  1886.     }
  1887.   }
  1888. }
  1889.  
  1890. nsNotifierService.prototype.clearCookieData = function() {
  1891.   this.logItem("  -- clearing cookie data!!");
  1892.  
  1893.   var defaultUser = this.getPrefBranch().getCharPref("gm-notifier.users.default");
  1894.  
  1895.   var cookieMgr = Components.classes[kCOOKIESERVICE_CONTRACTID]
  1896.                             .getService(Components.interfaces.nsICookieManager);
  1897.  
  1898.   cookieMgr.remove("mail.google.com", "GX", "/mail", false);
  1899.   cookieMgr.remove(".google.com", "SID", "/", false);
  1900.   cookieMgr.remove("mail.google.com", "GXAS", "/hosted", false);
  1901.   cookieMgr.remove("mail.google.com", "GXSP", "", false);
  1902.   cookieMgr.remove("mail.google.com", "GXAS_SEC", "/hosted", false);
  1903.  
  1904.   var defaultUser = this.getPrefBranch().getCharPref("gm-notifier.users.default");
  1905.  
  1906.   cookieMgr.remove(".google.com", "HID", "/hosted"+this.getHostedDomain(defaultUser)+"/", false);
  1907. }
  1908.  
  1909. nsNotifierService.prototype.isHostedDomain = function(aUsername) {
  1910.   var isHosted = false;
  1911.  
  1912.   if (aUsername.indexOf("@") > 0) {
  1913.     var domain = this.getHostedDomain(aUsername);
  1914.  
  1915.     // don't treat gmail.com/googlemail.com has hosted domains
  1916.     if (domain == "gmail.com" || domain == "googlemail.com") {
  1917.       isHosted = false;
  1918.     } else {
  1919.       isHosted = true;
  1920.     }
  1921.   }
  1922.  
  1923.   return isHosted;
  1924. }
  1925.  
  1926. nsNotifierService.prototype.getHostedDomain = function(aUsername) {
  1927.   var index = aUsername.indexOf("@");
  1928.  
  1929.   if (index >= 0) {
  1930.     return aUsername.substring(index+1, aUsername.length).toLowerCase();
  1931.   } else {
  1932.     return null;
  1933.   }
  1934. }
  1935.  
  1936.  
  1937. // timing stuff
  1938. nsNotifierService.prototype.setTimer = function() {
  1939.   if (this.updateTimer) {
  1940.     this.updateTimer.cancel();
  1941.   } else {
  1942.     this.updateTimer = Components.classes[kTIMER_CONTRACTID].createInstance(nsITimer);
  1943.   }
  1944.  
  1945.   this.logItem("Starting at : " + new Date());
  1946.   try {
  1947.     this.updateTimer.initWithCallback(this, this.timeOut, nsITimer.TYPE_ONE_SHOT);
  1948.   } catch (e) {
  1949.     this.logItem(e);
  1950.   }
  1951. }
  1952.  
  1953. // nsITimer
  1954. nsNotifierService.prototype.notify = function(aTimer) {
  1955.   this.logItem("  *************** notify called");
  1956.   this.logItem("End: " + new Date());
  1957.   this.checkAccounts();
  1958. }
  1959.  
  1960. nsNotifierService.prototype.pushStateChange = function(aUsername, aState) {
  1961.   for (var run = 0; run < this.listeners.length; run++) {
  1962.     // can be null if a listener was removed
  1963.     if (this.listeners[run]) {
  1964.       this.listeners[run].onStateChange(aUsername, aState);
  1965.     }
  1966.   }
  1967. }
  1968.  
  1969. nsNotifierService.prototype.observer = function(aCallbackFunc, aUsername, aThis) {
  1970.   var myThis = aThis;
  1971.  
  1972.   return ({
  1973.     data : "",
  1974.  
  1975.     onStartRequest : function (aRequest, aContext) {
  1976.       this.data = "";
  1977.     },
  1978.  
  1979.     onDataAvailable : function (aRequest, aContext, aStream, aSourceOffset, aLength){
  1980.       var scriptableInputStream = 
  1981.         Components.classes["@mozilla.org/scriptableinputstream;1"]
  1982.                   .createInstance(Components.interfaces.nsIScriptableInputStream);
  1983.       scriptableInputStream.init(aStream);
  1984.  
  1985.       this.data += scriptableInputStream.read(aLength);
  1986.     },
  1987.  
  1988.     onStopRequest : function (aRequest, aContext, aStatus) {
  1989.       // XXX: proxy issue: aStatus is an error from http://lxr.mozilla.org/seamonkey/source/netwerk/base/public/nsNetError.h#172
  1990.       myThis.callback(this.data, aRequest, aUsername);
  1991.     },
  1992.  
  1993.     onChannelRedirect : function (aOldChannel, aNewChannel, aFlags) {
  1994.       //dump("\nredirect!");
  1995.       if (aOldChannel == myThis.channel)  {
  1996.         //myThis.logItem("   - redirect to: "+aNewChannel.URI.spec);
  1997.         myThis.channel = aNewChannel;
  1998.       }
  1999.     },
  2000.  
  2001.     // nsIInterfaceRequestor
  2002.     getInterface: function (aIID) {
  2003.       try {
  2004.         return this.QueryInterface(aIID);
  2005.       } catch (e) {
  2006.         throw Components.results.NS_NOINTERFACE;
  2007.       }
  2008.     },
  2009.  
  2010.     // nsIProgressEventSink (to shut up annoying debug exceptions
  2011.     onProgress : function (aRequest, aContext, aProgress, aProgressMax) { },
  2012.     onStatus : function (aRequest, aContext, aStatus, aStatusArg) { },
  2013.  
  2014.     // nsIHttpEventSink (to shut up annoying debug exceptions
  2015.     onRedirect : function (aOldChannel, aNewChannel) { },
  2016.  
  2017.     QueryInterface : function(aIID) {
  2018.       if (aIID.equals(nsISupports) ||
  2019.           aIID.equals(Components.interfaces.nsIDocShell) ||
  2020.           aIID.equals(Components.interfaces.nsIInterfaceRequestor) ||
  2021.           aIID.equals(Components.interfaces.nsIChannelEventSink) || 
  2022.           aIID.equals(Components.interfaces.nsISupportsWeakReference) ||
  2023.           aIID.equals(Components.interfaces.nsIProgressEventSink) ||
  2024.           aIID.equals(Components.interfaces.nsIPrompt) ||
  2025.           aIID.equals(Components.interfaces.nsIHttpEventSink) ||
  2026.           aIID.equals(Components.interfaces.nsIDocShellTreeItem) ||
  2027.           aIID.equals(Components.interfaces.nsIStreamListener))
  2028.         return this;
  2029.  
  2030.       throw Components.results.NS_NOINTERFACE;
  2031.     }
  2032.   }
  2033.   );
  2034. }
  2035.  
  2036. /*
  2037.   New mail notification
  2038.  */
  2039. nsNotifierService.prototype.newMailNotification = function(aUsername, aNewNum) {
  2040.   if (aNewNum < 1) {
  2041.     return;
  2042.   }
  2043.  
  2044.   this.logItem("  New Mail Notification Init:");
  2045.  
  2046.   var isNotificationEnabled = this.getPrefBranch().getBoolPref("gm-notifier.ui.notification.enabled");
  2047.   this.logItem("    Is System Notification Enabled by user: " + isNotificationEnabled);
  2048.  
  2049.   if (isNotificationEnabled) {
  2050.     var msg = this.getFormattedString("NotificationMsg", [aNewNum]);
  2051.     var title = this.getFormattedString("NotificationMsgTitle", [aUsername]);
  2052.  
  2053.     try {
  2054.       if ("@mozilla.org/alerts-service;1" in Components.classes) {
  2055.         var alertService = Components.classes["@mozilla.org/alerts-service;1"]
  2056.                                      .getService(Components.interfaces.nsIAlertsService);
  2057.         if (alertService) {
  2058.           alertService.showAlertNotification("chrome://gm-notifier/content/gm-logo.png",
  2059.                                            title, msg, true, aUsername, this);
  2060.           this.logItem("    alertsService success.");
  2061.         } else {
  2062.           this.logItem("    alertsService failure: could not getService nsIAlertsService");
  2063.         }
  2064.       } else if ("@growl.info/notifications;1" in Components.classes) {
  2065.         // try growl
  2066.         var growl = Components.classes["@growl.info/notifications;1"].getService(Components.interfaces.grINotifications);
  2067.  
  2068.         if (growl) {
  2069.           this.logItem("    using growl service");
  2070.           growl.sendNotification(aUsername, "chrome://gm-notifier/content/gm-logo.png", title, msg, this);
  2071.         } else {
  2072.           this.logItem("    growl service failed");
  2073.         }
  2074.       }
  2075.     } catch(e) {
  2076.        this.logItem("    alertsService failure: " + e);
  2077.     }
  2078.   }
  2079.  
  2080.   // sound notifications
  2081.   var isSoundNotificationsEnabled = this.getPrefBranch().getBoolPref("gm-notifier.ui.soundnotification.enabled");
  2082.   this.logItem("  Is Sound Notification Enabled by user: " + isSoundNotificationsEnabled);
  2083.  
  2084.   if (isSoundNotificationsEnabled) {
  2085.     var soundUrl = this.getPrefBranch().getCharPref("gm-notifier.ui.soundnotification.uri");
  2086.  
  2087.     try {
  2088.       var sound = Components.classes["@mozilla.org/sound;1"]
  2089.                             .createInstance(Components.interfaces.nsISound);
  2090.       sound.init();
  2091.  
  2092.       var shortname = soundUrl.substr(0, 7);
  2093.  
  2094.       if (shortname == "http://" || shortname == "https:/") {
  2095.         var url = Components.classes["@mozilla.org/network/standard-url;1"]
  2096.                             .createInstance(Components.interfaces.nsIURL);
  2097.         url.spec = soundUrl;
  2098.         sound.play(url);
  2099.       } else {
  2100.         var localFile = Components.classes["@mozilla.org/file/local;1"]
  2101.                            .createInstance(Components.interfaces.nsILocalFile);
  2102.         localFile.initWithPath(soundUrl);
  2103.  
  2104.         var ios = Components.classes["@mozilla.org/network/io-service;1"]
  2105.                             .getService(Components.interfaces.nsIIOService);
  2106.         sound.play(ios.newFileURI(localFile));
  2107.       }
  2108.     } catch (e) {
  2109.       this.logItem("  Sound playing failed with: "+ e);
  2110.     }
  2111.   }
  2112. }
  2113.  
  2114. // nsIObserver for alert service - aData will be the username
  2115. nsNotifierService.prototype.observe = function (aSubject, aTopic, aData){
  2116.   switch (aTopic) {
  2117.     case "alertfinished":
  2118.       break;
  2119.  
  2120.     case "alertclickcallback":
  2121.       this.showNotification(aData);
  2122.       break;
  2123.  
  2124.     case "http-on-modify-request":
  2125.       // happens right before we send out the request, so that we can overwrite
  2126.       // the cookie data with ours.  Make sure it is our connection first.
  2127.       if (aSubject == this.channel) {
  2128.         var httpChannel = aSubject.QueryInterface(nsIHttpChannel);
  2129.  
  2130.         // overwrite the cookie we are going to be sending with ours.
  2131.         var username = this.userQueue[this.currentUserQueue];
  2132.         // create cookie string
  2133.         var cookieobject = this.userList[username].cookieObject;
  2134.         var cookie = this.buildCookieString(cookieobject, httpChannel.URI);
  2135.  
  2136.         httpChannel.setRequestHeader("Cookie", cookie, false);
  2137.  
  2138.         //dump("\n Request: "+ httpChannel.URI.spec+ "\n  Cookie: "+ cookie +"\n");
  2139.       }
  2140.       break;
  2141.  
  2142.     case "http-on-examine-response":
  2143.       // happens right before we process the response, so that we can store
  2144.       // and empty the Set-Cookie directive, so that the user's cookies aren't
  2145.       // overwritten by our connections.  Make sure it is our connection first.
  2146.       if (aSubject == this.channel) {
  2147.         var httpChannel = aSubject.QueryInterface(nsIHttpChannel);
  2148.         var cookie = "";
  2149.  
  2150.         try {
  2151.           cookie = httpChannel.getResponseHeader("Set-Cookie");
  2152.         } catch(e) {}
  2153.  
  2154.         //dump("\n Response: " + httpChannel.URI.spec+ "\n  Cookie: " + cookie +"\n");
  2155.  
  2156.         var username = this.userQueue[this.currentUserQueue];
  2157.  
  2158.         // parse the cookie.  Yes, we have a mini-parser here to make sure we get
  2159.         // all the cookies we need and dump the unused ones (including the
  2160.         // commands to expire certain cookies.
  2161.  
  2162.         var split = cookie.split("\n");
  2163.         var newcookie = "";
  2164.         var usercookieobject = this.userList[username].cookieObject;
  2165.         var expired = false;
  2166.  
  2167.         function getCookieString(aString) {
  2168.           var end = aString.indexOf(";");
  2169.           return aString.substr(0, end);
  2170.         }
  2171.  
  2172.         function getCookieDomain(aString) {
  2173.           var domain = aString.match(/\Domain=([a-zA-Z0-9.]*);/);
  2174.           return domain ? domain[1] : httpChannel.URI.host;
  2175.         }
  2176.  
  2177.         function getCookiePath(aString) {
  2178.           var path = aString.match(/\Path=([a-zA-Z0-9.\/]*);/);
  2179.           return path ? path[1] : null;
  2180.         }
  2181.  
  2182.         for (var i = 0; i < split.length; i++) {
  2183.           if (split[i].indexOf("=EXPIRED") > 0) {
  2184.             expired = true;
  2185.           } else {
  2186.             expired = false;
  2187.           }
  2188.  
  2189.           var index = split[i].indexOf("=");
  2190.           var cookiename = split[i].substr(0, index);
  2191.  
  2192.           if (!cookiename) {
  2193.             continue;
  2194.           }
  2195.  
  2196.           if (expired) {
  2197.             //dump("\n -- killing "+cookiename);
  2198.             delete usercookieobject[cookiename];
  2199.           } else {
  2200.             usercookieobject[cookiename] = {name: cookiename, value: getCookieString(split[i]), domain: getCookieDomain(split[i]), path: getCookiePath(split[i])};
  2201.             //usercookieobject[cookiename] = {value: getCookieString(split[i]), domain: getCookieDomain(split[i]), path: getCookiePath(split[i])};
  2202.             //dump("\n -- setting "+cookiename +" domain: "+usercookieobject[cookiename].domain+" path:"+usercookieobject[cookiename].path);
  2203.           }
  2204.  
  2205.           //dump(split[i]);
  2206.           // XXX: gmail specific stuff here
  2207.           /*if (split[i].indexOf("GX=") > -1) {
  2208.             if (expired) {
  2209.               usercookieobject.GX = "";
  2210.             } else {
  2211.               newcookie = split[i].match(/\GX=[a-zA-Z0-9_-]*;/);
  2212.               usercookieobject.GX = newcookie;
  2213.             }
  2214.           } else if (split[i].indexOf("LSID=") > -1) {
  2215.             if (expired) {
  2216.               usercookieobject.LSID = "";
  2217.             } else {
  2218.               newcookie = getCookieString(split[i]);
  2219.               usercookieobject.LSID = newcookie;
  2220.             }
  2221.           } else if (split[i].indexOf("SID=") > -1) {
  2222.             if (expired) {
  2223.               usercookieobject.SID = "";
  2224.             } else {
  2225.               newcookie = split[i].match(/\SID=[a-zA-Z0-9_-]*;/);
  2226.               usercookieobject.SID = newcookie;
  2227.             }
  2228.           } else if (split[i].indexOf("HID=") > -1) {
  2229.             if (expired) {
  2230.               // XXX: we need HID when you load hosted webmail, but why
  2231.               // is it being removed?
  2232.               //usercookieobject.HID = "";
  2233.             } else {
  2234.               newcookie = split[i].match(/\HID=[a-zA-Z0-9_-]*;/);
  2235.               usercookieobject.HID = newcookie;
  2236.             }
  2237.           } else if (split[i].indexOf("GXAS=") > -1) {
  2238.             if (expired) {
  2239.               usercookieobject.GXAS = "";
  2240.             } else {
  2241.               newcookie = split[i].match(/\GXAS=[a-zA-Z0-9_.=-]*;/);
  2242.               usercookieobject.GXAS = getCookieString(split[i]);
  2243.             }
  2244.           } else if (split[i].indexOf("GXAS_SEC=") > -1) {
  2245.             if (expired) {
  2246.               usercookieobject.GXAS_SEC = "";
  2247.             } else {
  2248.               newcookie = split[i].match(/\GXAS_SEC=[a-zA-Z0-9_.=-]*;/);
  2249.               usercookieobject.GXAS_SEC = getCookieString(split[i]);
  2250.             }
  2251.           } else if (split[i].indexOf("S=") == 0) {
  2252.             if (expired) {
  2253.               usercookieobject.S = "";
  2254.             } else {
  2255.               newcookie = getCookieString(split[i]);
  2256.               //dump("\n\nnew cookie: |"+newcookie+"|\n\n");
  2257.               usercookieobject.S = newcookie;
  2258.             }
  2259.           }*/
  2260.         }
  2261.  
  2262.         // make sure we don't store the Set-Cookie directive by making it empty
  2263.         httpChannel.setResponseHeader("Set-Cookie", "", false);
  2264.       }
  2265.       break;
  2266.   }
  2267. }
  2268.  
  2269. nsNotifierService.prototype.showNotification = function(aUsername) {
  2270.   // when the alert callback happens, we want to notify the listener that
  2271.   // initiated the server connection that the alert was clicked.
  2272.   // Simply pushing a state change to all listeners will result in the
  2273.   // infinite window open loop!
  2274.   this.logItem("Alert Clickback called for " + aUsername + ":");
  2275.   this.logItem("  Notification Window is: (" + this.notificationListenerID + ").");
  2276.  
  2277.   var run = 0;
  2278.   if (this.notificationListenerID) {
  2279.     var done = false;
  2280.     while (!done && (run < this.listeners.length)) {
  2281.       this.logItem("  Item " + run +  " has id (" + this.listeners[run].getID() + ")");
  2282.       if (this.listeners[run] && (this.listeners[run].getID() == this.notificationListenerID))
  2283.         done = true;
  2284.       else 
  2285.         run++;
  2286.     }
  2287.   } else {
  2288.     // fallback
  2289.     while ((this.listeners[run] == null) && (run < this.listeners.length))
  2290.       run++;
  2291.  
  2292.     this.logItem("  No notification window found, call listener #" + run);
  2293.   }
  2294.  
  2295.   if (this.listeners[run]) {
  2296.     this.listeners[run].onStateChange(aUsername, nsINotifierProgressListener.LOAD_MAIL);
  2297.   }
  2298. }
  2299.  
  2300. nsNotifierService.prototype.createFolder = function(aName, aUnreadMail) {
  2301.   return {
  2302.     name: aName,
  2303.     unreadMail: aUnreadMail
  2304.   }
  2305. }
  2306.  
  2307. /* Pref code */
  2308. nsNotifierService.prototype.getPrefBranch = function(){
  2309.   if (!this.prefBranch) {
  2310.     this.prefBranch = Components.classes['@mozilla.org/preferences-service;1'];
  2311.     this.prefBranch = this.prefBranch.getService();
  2312.     this.prefBranch = this.prefBranch.QueryInterface(Components.interfaces.nsIPrefBranch);
  2313.   }
  2314.  
  2315.   return this.prefBranch;
  2316. }
  2317.  
  2318. nsNotifierService.prototype.prefChanged = function(aPrefName) {
  2319.   switch (aPrefName) {
  2320.     case "gm-notifier.update.interval":
  2321.       this.setTimeout(this.getPrefBranch().getIntPref("gm-notifier.update.interval"));
  2322.       break;
  2323.  
  2324.     case "gm-notifier.multiaccount.enabled":
  2325.       if (!this.supportsMultiMode()) {
  2326.         this.multiuser = false;
  2327.       } else {
  2328.         this.multiuser = this.getPrefBranch().getBoolPref("gm-notifier.multiaccount.enabled");
  2329.       }
  2330.  
  2331.       this.buildUserQueue();
  2332.  
  2333.       if (!this.multiuser) {
  2334.         // build a new user list
  2335.  
  2336.         // log out every user other than the default user
  2337.         for (name in this.userList) {
  2338.           if (name != this.defaultUser) {
  2339.             this.logoutUser(name);
  2340.           }
  2341.         }
  2342.       }
  2343.       break;
  2344.  
  2345.     case "gm-notifier.users.default":
  2346.       try {
  2347.         this.defaultUser = this.getPrefBranch().getCharPref("gm-notifier.users.default");
  2348.       } catch (e) {}
  2349.       break;
  2350.   }
  2351. }
  2352.  
  2353. nsNotifierService.prototype.addPrefObserver = function(aDomain, aFunction){
  2354.   var myPrefs = this.getPrefBranch();
  2355.   var prefBranchInternal = myPrefs.QueryInterface(Components.interfaces.nsIPrefBranchInternal);
  2356.  
  2357.   if (prefBranchInternal) {
  2358.     prefBranchInternal.addObserver(aDomain, aFunction, false);
  2359.   }
  2360. }
  2361.  
  2362. /* Bundle code */
  2363. nsNotifierService.prototype.getStringBundle = function() {
  2364.   if (!this.stringBundle) {
  2365.     var strBundleService = Components.classes["@mozilla.org/intl/stringbundle;1"]
  2366.                              .createInstance(Components.interfaces.nsIStringBundleService);
  2367.  
  2368.     this.stringBundle = strBundleService.createBundle("chrome://gm-notifier/locale/gm-notifier.properties");
  2369.   }
  2370.  
  2371.   return this.stringBundle;
  2372. }
  2373.  
  2374. nsNotifierService.prototype.getString = function(aName) {
  2375.   return this.getStringBundle().GetStringFromName(aName);
  2376. }
  2377.  
  2378. nsNotifierService.prototype.getFormattedString = function(aName, aStrArray) {
  2379.   return this.getStringBundle().formatStringFromName(aName, aStrArray, aStrArray.length);
  2380. }
  2381.  
  2382. nsNotifierService.prototype.getLoginDetails = function(aUsername) {
  2383.   var url = "chrome://gm-notifier/";
  2384.  
  2385.   // check for toolkit's login manager (Mozilla 1.9)
  2386.   if (Components.classes[kLOGINMANAGER_CONTRACTID]) {
  2387.     var passwordManager = Components.classes[kLOGINMANAGER_CONTRACTID].getService(nsILoginManager);
  2388.     var logins = passwordManager.findLogins({}, url, null, "gm-notifier");
  2389.  
  2390.     for (var i = 0; i < logins.length; i++) {
  2391.       if (logins[i].username == aUsername) {
  2392.         var password = logins[i].password;
  2393.         if (password === " ") {
  2394.           // XXX: empty password is " " for now due to ff3 change
  2395.           return "";
  2396.         } else {
  2397.           return password;
  2398.         }
  2399.       }
  2400.     }
  2401.   } else {
  2402.     var passwordManager = Components.classes[kPSWDMANAGER_CONTRACTID]
  2403.                           .createInstance(nsIPasswordManagerInternal);
  2404.     var host = {value:""};
  2405.     var user =  {value:""};
  2406.     var password = {value:""};
  2407.  
  2408.     try {
  2409.       passwordManager.findPasswordEntry(url, aUsername, "", host, user, password);
  2410.     } catch(e){ }
  2411.  
  2412.     return password.value;
  2413.   }
  2414. }
  2415.  
  2416. nsNotifierService.prototype.getPassword = function(aUsername) {
  2417.   var password = "";
  2418.  
  2419.   if (this.userList[aUsername]) {
  2420.     password = this.userList[aUsername].password;
  2421.   }
  2422.  
  2423.   if (!password) {
  2424.     password = this.getLoginDetails(aUsername);
  2425.   }
  2426.  
  2427.   return password;
  2428. }
  2429.  
  2430. nsNotifierService.prototype.getURLProtocol = function() {
  2431.   /*var urlprotocol = "";
  2432.   if (this.getPrefBranch().getBoolPref("gm-notifier.connection.use.unsecured")) {
  2433.     urlprotocol = "http://";
  2434.   } else {
  2435.     urlprotocol = "https://";
  2436.   }
  2437.  
  2438.   return urlprotocol;*/
  2439.   return "https://";
  2440. }
  2441.  
  2442. nsNotifierService.prototype.supportsMultiMode = function() {
  2443.   var supports = false;
  2444.  
  2445.   try {
  2446.     var appInfo = Components.classes["@mozilla.org/xre/app-info;1"]
  2447.                             .getService(Components.interfaces.nsIXULAppInfo);
  2448.     if (appInfo.platformVersion >= "1.8.1") {
  2449.       supports = true;
  2450.     }
  2451.   } catch (e) {}
  2452.  
  2453.   return supports;
  2454. }
  2455.  
  2456. nsNotifierService.prototype.newUserListItem = function(aUsername, aPassword) {
  2457.   if (!this.userList[aUsername]) {
  2458.     this.userCount++;
  2459.   }
  2460.  
  2461.   return {
  2462.     name: aUsername,
  2463.     password: aPassword,
  2464.     resetState: false,
  2465.     newMailMode: false,
  2466.     folders: new Array(),
  2467.     unreadEmails: null,
  2468.     tmpUnreadEmails: null,
  2469.     newEmails: 0,
  2470.     space_used_mb: null,
  2471.     space_used_percent: null,
  2472.     total_mb: null,
  2473.     inboxUnread: 0,
  2474.     inboxNew: 0,
  2475.     state: nsINotifierService.USER_STATE_LOGGED_OUT,
  2476.     cookieObject: new Object()
  2477.   }
  2478. }
  2479.  
  2480. /**
  2481.  * JS XPCOM component registration goop:
  2482.  *
  2483.  * We set ourselves up to observe the xpcom-startup category.  This provides
  2484.  * us with a starting point.
  2485.  */
  2486.  
  2487. nsNotifierService.prototype.QueryInterface = function(iid) {
  2488.   if (!iid.equals(nsINotifierService) &&
  2489.       !iid.equals(Components.interfaces.nsIObserver) &&
  2490.       !iid.equals(nsISupports))
  2491.     throw Components.results.NS_ERROR_NO_INTERFACE;
  2492.   return this;
  2493. }
  2494.  
  2495. var nsNotifierServiceModule = new Object();
  2496.  
  2497. nsNotifierServiceModule.registerSelf = function (compMgr, fileSpec, location, type) {
  2498.   compMgr = compMgr.QueryInterface(Components.interfaces.nsIComponentRegistrar);
  2499.   compMgr.registerFactoryLocation(kGMSERVICE_CID,
  2500.                                   "nsIGMNotifierService",
  2501.                                   kGMSERVICE_CONTRACTID,
  2502.                                   fileSpec,
  2503.                                   location,
  2504.                                   type);
  2505. }
  2506.  
  2507. nsNotifierServiceModule.getClassObject = function (compMgr, cid, iid) {
  2508.   if (!cid.equals(kGMSERVICE_CID)) {
  2509.     throw Components.results.NS_ERROR_NO_INTERFACE;
  2510.   }
  2511.  
  2512.   if (!iid.equals(Components.interfaces.nsIFactory)) {
  2513.     throw Components.results.NS_ERROR_NOT_IMPLEMENTED;
  2514.   }
  2515.  
  2516.   return nsNotifierServiceFactory;
  2517. }
  2518.  
  2519. nsNotifierServiceModule.canUnload = function (compMgr) {
  2520.   // cleanup
  2521.   this.listeners = null;
  2522.  
  2523.   if (this.updateTimer) {
  2524.     this.updateTimer.cancel();
  2525.   }
  2526.  
  2527.   this.updateTimer = null;
  2528.  
  2529.   this.observerService = null;
  2530.  
  2531.   return true;
  2532. }
  2533.  
  2534. var nsNotifierServiceFactory = new Object();
  2535.  
  2536. nsNotifierServiceFactory.createInstance = function (outer, iid) {
  2537.   if (outer != null) {
  2538.     throw Components.results.NS_ERROR_NO_AGGREGATION;
  2539.   }
  2540.  
  2541.   if (!iid.equals(nsINotifierService) && !iid.equals(nsISupports)) {
  2542.     throw Components.results.NS_ERROR_NO_INTERFACE;
  2543.   }
  2544.  
  2545.   return new nsNotifierService();
  2546. }
  2547.  
  2548. function NSGetModule(compMgr, fileSpec) {
  2549.   return nsNotifierServiceModule;
  2550. }
  2551.  
  2552.